PDA

View Full Version : سوال: فرق Local DataBase و Service-based Data base



mahdi.akbari
جمعه 12 خرداد 1391, 16:52 عصر
سلام دوستان
برای نوشتن برنامه هایی که نیاز به بانک اطلاعاتی دارند زمانی که از New Item قسمت Data می خواهیم بانک اطلاعاتی بسازیم با دو گزینه Local dataBase و Service-based Data base روبرو هستیم ، می خواستم بدونم فرق این دو گزینه در چیه؟
ممنون می شم اگه کسی جواب سوالمو بده

mahdi.akbari
جمعه 12 خرداد 1391, 19:17 عصر
کسی که جواب نداد ولی خودم یه سرچ زدم یه چیزایی دستگیرم شد، اینجا می نویسم تا بقیه هم که براشون سوال بود جواب داده بشه

Local Database is SQL compact edition database. It is file-based database. You only need to use the Driver to access the data directly. Commonly it doesn't supply the stored procedure, rich security mechanism.

Service Based database is that you need to connect to the SQL server which attaches the database so as to access the database.

ssz1370
جمعه 29 آذر 1392, 20:07 عصر
Basically, a service-based database is when the database is stored on a server. To access the database, you need to have the SQL Server service running....hence the "service-based". You connect to the server, query the database, and get the information back.

A "local database" is a database that is stored on the local PC where an application resides
http://www.dreamincode.net/forums/topic/105448-whats-the-difference-between-local-database-and-service-based-dat/