I’m writing a program in C# that will need to store a few Data Tables on the user’s computer and load them back when he restarts the program: Up to about 10000 records consisting of text and integers. I don’t want to use a CSV file, and I had some trouble with SQLite. Are there any other good options to try?
Share
The Microsoft equivalent for SQLite is SQL Server Compact. It is free. You just need to redistribute some dlls with your application. The end user won’t be forced to install a full fledged db product like SQL Server Express or MySQL to run your application.