Without installing SQL Server, .net application which inserts data can run on the machine?
Is there any way 开发者_如何学JAVAthat without installing SQL Server on a machine, a .NET application which inserts and updates data can run on the machine?
You could use SQL Compact Edition or SQLite (if you want the data stored locally).
Otherwise, you can connect to a centralised database server.
精彩评论