I need to create a very simple app that has one table that will need to store records over time. What is the best way to do this with vs 2010 if i do not want to install a database engine on the end users machine.
I would like to just package up the database file with the exe when deploying. There will only be one user accesses the table but i do not want to have to install sql express on the end users computer.
Any suggestions? Thanks!
You might be looking for SQL Server Compact Edition – if it is just one table and not very much data you might consider just using an XML file as well though.