I am using SQL Server as database with VB.net to develop an application. Is there any way to embed the SQL db/table to the application so that client will not have to install SQL Server.
-
SqlLite would suffice, it's not a DBMS rather file system. Which in turns means the end client doesn't need anything. Also you can't embed SQL into the application as they would need the whole server for this...Trevor– Trevor2016-10-29 10:34:14 +00:00Commented Oct 29, 2016 at 10:34
-
Does it mean that the uses should have the same tables as i had at development time.Muhammad Haroon– Muhammad Haroon2016-10-31 15:13:16 +00:00Commented Oct 31, 2016 at 15:13
-
Yes they would.Trevor– Trevor2016-10-31 23:08:13 +00:00Commented Oct 31, 2016 at 23:08
Add a comment
|
1 Answer
I think recent versions of SQL Server have a feature called 'LocalDB' which might fit your needs : https://msdn.microsoft.com/en-us/library/hh510202.aspx