VB.NET - Storing data locally?

Associate
Joined
28 Oct 2011
Posts
539
I've not written any data driven applications other than with MySQL before.. what is the best way to store record data using .NET? In VB6 there is the Record module where you can use fixed length records in a text file however I haven't found such a thing in .NET


cHEERS
 

Pho

Pho

Soldato
Joined
18 Oct 2002
Posts
9,325
Location
Derbyshire
Look into noSQL stuff like Redit, RavenDB, SQLite etc. They'll let you store complex data without the need for a SQL server.

*I mostly always use MSSQL for things I work on, so there's probably better ways than the above.
 
Associate
Joined
7 Nov 2013
Posts
255
Location
Kent, England
The solution you go for is going to be dependent upon the problem you are trying to solve.

If you only have a small amount of data, serializing a collection to a file may be enough.

If you have lots of data, you should look into MS SQL Compact or SQLite.
 
Back
Top Bottom