Local database without sql server

I am creating a C # application that I will install on some low level PCs. All I can install on low-level machines is the .NET framework. I want to use some database so that I can store information that the application will clear from the Internet. Can anyone suggest me how to do this? I can not install any version of sql server.

Thank.

+5
source share
5 answers

Your best option is to use an access database. You will not need to install anything on the machine, it is like using a flat file, which can be requested as a database :)

+8
+6

SqlServerCe 3.5, EF 4.0 , 2 DLL .

+4

VistaDB, SQLite, SQL Server, MS Access, Firebird... , http://en.wikipedia.org/wiki/Embedded_database

+2

SQLite.

# .

+1

All Articles