Asp.net file database

Is there any simple database system that uses simple text or XML files to store data? I just need some basic features like update, delete, insert, simple constraints and relationships.

For the project that I am currently using SQL Server, it will be too heavy, and I still never liked it.

+4
source share
7 answers

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

+2
source

SqlCompact is a great option for this. There is no engine or installation, just turn on the DLL and you can create the database on the fly.

http://www.microsoft.com/downloads/details.aspx?FamilyId=DC614AEE-7E1C-4881-9C32-3A6CE53384D9&displaylang=en

- EDIT: as @MathewMartin said: SqlCompact 4.0 is designed to build a web database and allows multiple connections.

+1
source

SQLite is a good option.

Since you are using .net, although I would have thought, just using xml and LINQ to XML, it is very sql, as in many ways.

0
source

Check this question: Free Portable Database

There you will find a list of "light" databases.

0
source

If you prefer an object database , consider using NDatabase .

0
source

Source: https://habr.com/ru/post/1301647/


All Articles