Options to save data
For years I have been developing data-centered applications using an access database to store my data (I then distribute the mdb file with my app). I wonder what is a typical setup for a vb.net application? What options do I have to store data that allow me to have good performance to retrieve and store data? Should I look at XML?
Greetz,
Bart
Hirendra SisodiyaPosted Jun 24, 2010, 8:52 AM
good performance depends on retrieving storing data techniques, you can see on Xml, but you can gain good performance by changing retriving or saving techniques..
thanks
Sean WesterfieldPosted Jun 23, 2010, 7:29 PM
SQL Server can be run on a server or a local machine, depending on your needs, and the free, Express version contains most of the options you'll ever need. Each database in the Express version is limited to either 2 or 4 gigs (I can't remember which off the top of my head), but you can run multiple databases and split your tables into different db's if space becomes an issue.
Hope that helps a little.