www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Object/document database

reply Jonathan Hanselman <jhanselman thisisnotmyrealemail.com> writes:
I'm not sure this is the right place to post this. I apologize in advance.

Can Orage be used as an object/document database? If not, are there any plans
to add support to it.

And also, is there anyone working on an object/document database for D or
bindings to existing projects?

Thank you.
Aug 03 2011
parent reply "Vladimir Panteleev" <vladimir thecybershadow.net> writes:
On Wed, 03 Aug 2011 21:46:45 +0300, Jonathan Hanselman  
<jhanselman thisisnotmyrealemail.com> wrote:

 Can Orage be used as an object/document database? If not, are there any  
 plans
 to add support to it.
I can't find anything on the web about Orage, an object/document database.
 And also, is there anyone working on an object/document database for D or
 bindings to existing projects?
What about SQLite? -- Best regards, Vladimir mailto:vladimir thecybershadow.net
Aug 03 2011
parent reply Jonathan Hanselman <jhanselman thisisnotmyrealemail.com> writes:
== Quote from Vladimir Panteleev (vladimir thecybershadow.net)'s article
 On Wed, 03 Aug 2011 21:46:45 +0300, Jonathan Hanselman
 <jhanselman thisisnotmyrealemail.com> wrote:
 Can Orage be used as an object/document database? If not, are there any
 plans
 to add support to it.
I can't find anything on the web about Orage, an object/document database.
This is the "Orange" I was talking about: http://dsource.org/projects/orange It's an object serialization library which is the base of an object / document database.
 And also, is there anyone working on an object/document database for D or
 bindings to existing projects?
What about SQLite?
SQLite it's a SQL database. I'm looking for something where you can just do obj.save() and db.filter() to save retrieve instances.
Aug 04 2011
parent =?UTF-8?B?QWxleCBSw7hubmUgUGV0ZXJzZW4=?= <xtzgzorex gmail.com> writes:
On 04-08-2011 20:11, Jonathan Hanselman wrote:
 == Quote from Vladimir Panteleev (vladimir thecybershadow.net)'s article
 On Wed, 03 Aug 2011 21:46:45 +0300, Jonathan Hanselman
 <jhanselman thisisnotmyrealemail.com>  wrote:
 Can Orage be used as an object/document database? If not, are there any
 plans
 to add support to it.
I can't find anything on the web about Orage, an object/document database.
This is the "Orange" I was talking about: http://dsource.org/projects/orange It's an object serialization library which is the base of an object / document database.
 And also, is there anyone working on an object/document database for D or
 bindings to existing projects?
What about SQLite?
SQLite it's a SQL database. I'm looking for something where you can just do obj.save() and db.filter() to save retrieve instances.
I don't think something like that exists. However, given Orange, it should be very trivial to just take the serialized data and throw it into some storage of sorts. - Alex
Aug 04 2011