If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Other > object databases?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-17-05, 14:02
efalsken efalsken is offline
Registered User
 
Join Date: Nov 2005
Posts: 3
object databases?

Has anyone here ever used db4o before? It's supposed to be an object database for Java and .NET. Sounds cool if it can store my class objects natively without any translation.

They also have this new Native Query system that makes db queries look like just another function call:

Code:
IList<Student> students = database.Query<Student>( 
     delegate(Student candidate){
        return candidate.Age < 20
          && candidate.Grade() == Grade.A;
     });
Anyone else have any ideas?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On