Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi All: What are the OO database

Status
Not open for further replies.

parimalpat

Programmer
Aug 29, 2003
2
US
Hi All:

What are the OO databases available in the market that supports Query-By-Example?

for eg:

Person person = new Person();
person.setFirstName("John");
person.setLastName("Smith");
person.friends = new Map(); //Or any Key-value datatype
person.friends.put("Friend1", "Bill");
person.friends.put("Friend2", "Jim");
person.saveToDatabase();

Person findThisPerson = new Person();
findThisPerson.setFirstName("John");
findThisPerson.friends.put("Friend1", "Bill");
person.findFromDatabase();

Thanks,
Parimal

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top