Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best DLL-Base Database for .NET?

I have a Hosting which doesn't support SQL server or any other databse because it is cheap. I know that there are some Dll in which we can add to project and use it as the database.

I wantto know that which one is the best? and is there any other solution to use a database in a Hosting which doesn't support any kind of Database? (don't tell that you can usefile-base database, cause I don't like it)

like image 999
Nasser Hadjloo Avatar asked May 25 '11 06:05

Nasser Hadjloo


People also ask

What is .NET database?

Database .NET is an innovative, powerful and intuitive multiple database management tool. With it you can browse/grant objects, design tables, edit rows, run queries, generate scripts, analyze/monitor SQL and import/export/migrate/sync data with a consistent interface in the Visual Studio Project Explorer.

Which library is used for database connection in C#?

ADO.NET provides classes to connect to databases in . NET using C#.


1 Answers

You could use SQL Server Compact Edition, or SqlLite with a .NET provider (like this one: System.Data.SQLite).

like image 96
Simon Mourier Avatar answered Oct 04 '22 23:10

Simon Mourier