954,525 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Object oriented Database with c#

Hi All,

Does anyone know good and reliable "Open Source"object oriented database for use with c#.
My Database will contain about 500 mb to 1 Gb of data.

Thanks,

seebharath
Light Poster
28 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

Why does it need to be open source? Just askin'. ;)

Radical Edward
Posting Pro
545 posts since May 2008
Reputation Points: 361
Solved Threads: 97
 
gusano79
Posting Pro
521 posts since May 2004
Reputation Points: 182
Solved Threads: 77
 

Thanks for the reply..

I want an open source OODB as this will be free to use.

seebharath
Light Poster
28 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

@gusano79
Thanks for u r reply..
Correct me if I am wrong.. but are'nt SqlLite and MySQL Relational databases and not Object oriented databases ?

seebharath
Light Poster
28 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

Anyone any suggestions ?

seebharath
Light Poster
28 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

Try Eloquera Database - it is a native .NET object database.

Eloquera http://www.eloquera.com originally designed and developed for use in the Web environment and it’s designed as native .NET application in C#.

Eloquera wasn’t ported from Java as many other databases.

Eloquera natively as part of architecture supports:

- Save the data with a single line of code

// Create the object we would like to work with. 
Movie movie = new Movie() 
{ 
    Location = "Sydney", 
    Year = 2010, 
    OpenDates = new DateTime[] { new DateTime(2003, 12, 10), new DateTime(2003, 10, 3) } }; 

// And here is where the magic begins... 
// Store the object - no conversion required. 
db.Store(movie);

- Since most of the users in the Web come from relational database world it was natural for Eloquera to support SQL and LINQ

in SQL

var movies = db.ExecuteQuery("select Movie where Year between 1956 and 1970");


OR in LINQ

var movies = from Movie m in db where (m.Year >= 1956) && (m.Year <= 1970) select m;


- Simultaneous user access

- Security settings

- Has genuine C/S architecture, has desktop mode available

- Max database size 1TB+, in a large data scale Eloquera maintains the fast query response; it has patents pending technologies including virtual file system, indexing, and adaptive cache. Eloquera has state of the art reflection written in MSIL that allows Eloquera to outperform many databases that use Microsoft’s standard reflection.

- Supports in-memory database for the fast data processing

- EF support is due next monthSome of the distinguished points

- Eloquera is FREE for commercial use. You are not required to pay any royalties. All features above you have for FREE.

- Eloquera has a commercial support available.

- Eloquera is designed for the modern world with modern architecture. It was not adapting from time to time to market needs. It is natural part of Eloquera’s architecture.

The latest Eloquera Database installation can be found here

http://eloquera.com/page/download.aspx

bablind
Newbie Poster
1 post since Jun 2010
Reputation Points: 10
Solved Threads: 1
 

Hi All,

Does anyone know good and reliable "Open Source"object oriented database for use with c#. My Database will contain about 500 mb to 1 Gb of data.

Thanks,


Take a look at Wiki : http://en.wikipedia.org/wiki/Object_database . Here is an object oriented database engine - db4o , open source object database engine.

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

Just a note on db4o - your application must be GPL open source to use it. Otherwise it'll cost you 1,500USD per copy.

There is a big difference between being "Open Source" and free.

pennanth
Newbie Poster
1 post since Jun 2010
Reputation Points: 10
Solved Threads: 1
 
@gusano79 Thanks for u r reply.. Correct me if I am wrong.. but are'nt SqlLite and MySQL Relational databases and not Object oriented databases ?

Yes, sorry! I'll read more carefully next time. :S

gusano79
Posting Pro
521 posts since May 2004
Reputation Points: 182
Solved Threads: 77
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You