Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best database for a C# Desktop App? (NO NETWORKING) [closed]

Tags:

c#

database

What should I use? I need to store data, and it only needs to be on the local machine. I will be storing all string variables, and in many columns.

What is the best? Would it even be a database?

like image 915
Bloodyaugust Avatar asked Feb 17 '10 01:02

Bloodyaugust


People also ask

Which database is best for C?

Microsoft SQL Server This database was launched in 1989 and it is also one of the most popular relational database management systems (RDBMS) in the world. It is written in C and C++ and supports structured query language.

Which database is used by C?

Jasmine/C is a C-based database proqramninq language that allows the handling of persistent objects in Jasmine databases. The language is used to write methods for objects and application programs. Both navigational and associative access to objects are supported.

Is C good for databases?

C in DatabasesC programming language is mostly used in almost all the popular database tools in the computer world, namely, MySQL, Oracle, PostgreSQL, MS SQL Server, etc. The codes on these tools are written with the help of C, as well as C++.


1 Answers

I would recomend db4o, an object database engine. It's pretty straightforward and no server or installation is needed on the client. Another alternative would be SQLite. You can get the .NET provider here.

Edit

See db4o tutorial here.

like image 178
Fernando Avatar answered Sep 21 '22 07:09

Fernando