A fully managed database solution?

Hey, I'm looking for an open source mechanism that is fully written in C # (no native DLL, not mixed mode, etc.). It should support basic table operations (INSERT, UPDATE, SELECT, DELETE, and TRUNCATE) and transactions. SQL support is not required.

Thanks.

+6
c # database managed transactions
source share
4 answers

There is also a C # port for SQlite (with the FAQ here ) here with the entry of Miguel de Icaz

+9
source share

I have no experience with it, but I heard good things about db4o .

+4
source share

Havent tried this and did not work with it, but this lecturer developed this managed database called Pyrrho . He was also responsible for the good lexer / parser toolkit found here ..

+1
source share

There are many, many dead databases and some commercials. After some study, I found the following open sources interesting for experiments:

https://github.com/hhblaze/DBreeze

https://github.com/mbdavid/LiteDB

+1
source share

All Articles