Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File-based database asp.net

Is there some kind of simple database system that uses simple text or xml files for data storage? I just need some basic functionality like update,delete, insert, simple constraints and relations.

For the project that I have now using SQL Server would be too heavyweight and I have never really liked it anyway.

like image 947
Tomasi Avatar asked Dec 30 '22 01:12

Tomasi


2 Answers

Yes it is: SQLite :)

There is ADO Provider: http://sqlite.phxsoftware.com/forums/default.aspx?GroupID=2

There is article on that: http://www.aspfree.com/c/a/Database/Using-SQLite-for-Simple-Database-Storage/

like image 138
dariol Avatar answered Jan 11 '23 04:01

dariol


The DataSet from the .NET Framework is also an option. See DataSets, DataTables, and DataViews (ADO.NET) on MSDN.

like image 29
Jakob Gade Avatar answered Jan 11 '23 06:01

Jakob Gade