943,192 Members | Top Members by Rank

Ad:
  • C# Discussion Thread
  • Marked Solved
  • Views: 1574
  • C# RSS
Jun 7th, 2010
-1

Object oriented Database with c#

Expand Post »
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,
Similar Threads
Reputation Points: 10
Solved Threads: 0
Light Poster
seebharath is offline Offline
28 posts
since Jan 2009
Jun 7th, 2010
0
Re: Object oriented Database with c#
Why does it need to be open source? Just askin'.
Last edited by Radical Edward; Jun 7th, 2010 at 1:02 pm.
Reputation Points: 361
Solved Threads: 97
Posting Pro
Radical Edward is offline Offline
526 posts
since May 2008
Jun 7th, 2010
0
Re: Object oriented Database with c#
Reputation Points: 182
Solved Threads: 71
Posting Pro in Training
gusano79 is offline Offline
474 posts
since May 2004
Jun 7th, 2010
0
Re: Object oriented Database with c#
Thanks for the reply..

I want an open source OODB as this will be free to use.
Reputation Points: 10
Solved Threads: 0
Light Poster
seebharath is offline Offline
28 posts
since Jan 2009
Jun 7th, 2010
0
Re: Object oriented Database with c#
@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 ?
Reputation Points: 10
Solved Threads: 0
Light Poster
seebharath is offline Offline
28 posts
since Jan 2009
Jun 7th, 2010
0
Re: Object oriented Database with c#
Anyone any suggestions ?
Last edited by seebharath; Jun 7th, 2010 at 11:28 pm.
Reputation Points: 10
Solved Threads: 0
Light Poster
seebharath is offline Offline
28 posts
since Jan 2009
Jun 8th, 2010
1

Eloquera Database (native .NET object database)

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

C# Syntax (Toggle Plain Text)
  1. // Create the object we would like to work with.
  2. Movie movie = new Movie()
  3. {
  4. Location = "Sydney",
  5. Year = 2010,
  6. OpenDates = new DateTime[] { new DateTime(2003, 12, 10), new DateTime(2003, 10, 3) } };
  7.  
  8. // And here is where the magic begins...
  9. // Store the object - no conversion required.
  10. 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

C# Syntax (Toggle Plain Text)
  1. var movies = db.ExecuteQuery("select Movie where Year between 1956 and 1970");

OR in LINQ

C# Syntax (Toggle Plain Text)
  1. 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 month

Some 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
Last edited by bablind; Jun 8th, 2010 at 3:10 am.
Reputation Points: 10
Solved Threads: 1
Newbie Poster
bablind is offline Offline
1 posts
since Jun 2010
Jun 8th, 2010
0
Re: Object oriented Database with c#
Click to Expand / Collapse  Quote originally posted by seebharath ...
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.
Moderator
Reputation Points: 2136
Solved Threads: 1228
Posting Genius
adatapost is offline Offline
6,525 posts
since Oct 2008
Jun 8th, 2010
2
Re: Object oriented Database with c#
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.
Reputation Points: 10
Solved Threads: 1
Newbie Poster
pennanth is offline Offline
1 posts
since Jun 2010
Jun 8th, 2010
0
Re: Object oriented Database with c#
Click to Expand / Collapse  Quote originally posted by seebharath ...
@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.
Reputation Points: 182
Solved Threads: 71
Posting Pro in Training
gusano79 is offline Offline
474 posts
since May 2004

This thread is solved

Either the thread starter or a moderator has marked this thread as solved. You can most likely trust the responses and answers given. There is most likely no reason for any further responses to be posted here. If you have a related question, please start a new thread in this forum instead.

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C# Forum Timeline: C# Word Automation creating Tables
Next Thread in C# Forum Timeline: Any one familiar with silverlight





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC