views:

56

answers:

1

I am looking for options other than MS SQL Server/Express. There seem to be quite a few file based or in-memory database engines supporting some subset or dialect of SQL. Preferably it would be an engine not requiring installation at all.

Is any of them supported by SimpleRepository? Is any of them supported by ActiveRecord? Is there at least some partial support for any of these alternative engines?

A: 

Are you looking for a Database engine, or a Query Engine, or an Object Relational Mapper?

Database engines you can use

Query Engines/ORMs, you can use

And countless others. If you're doing .Net development, take a look at SubSonic. Rob Conery and the other contributors are working on some amazingly cool stuff that you might be looking for, like the SimpleRepository and ActiveRecord (almost like a rails style type of data modeling/persistence type of deal).

MunkiPhD
Thank you for your quick response. I already know SimpleRepository and ActiveRecord, amazing stuff! My question was regarding lightweight database engines, preferably those that are not requiring any installation. Out of the options you have listed, SQLite seems to be what I was looking for. Thanks!
Marek