Is it possible to use a SQL Server database, i.e. a .mdf file, without having to install SQL Server (Express)?
-
You could convert it to SQLite: stackoverflow.com/questions/959711/… as that is embeddable.Ian Mercer– Ian Mercer2015-09-29 15:07:14 +00:00Commented Sep 29, 2015 at 15:07
Add a comment
|
1 Answer
No you cannot use .mdf file without installing SQL Server on your system. However, there are some open source projects which you might be interested to look in like OrcaMDF which you can use to read the SQL server data files without the usage of SQL Server installation.