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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Object Model / Relational Technology

Status
Not open for further replies.

zeromancer

Programmer
Apr 16, 2005
1
0
0
AT

I have a vague memory of an interesting approach
to object-oriented databasing and now need to dig
deeper into it. The objects were stored in a plain-vanilla
RDBMS, what had all sorts of advantages. Now I would
like to read up on this approach before investing
design-work into my own project. Does anybody know
what the official term for this pattern is? Is there
a GPLed package that works like this? The unknown designer
of the thing made it work like this:

Classes, or object instances are sets of attributes.
An attribute can store a string, an int or a reference
to another object.

The attributes are themselves objects and store to
which object they belong. This way, nested hierarchies
of arbitrary complexity can be built. A tailer-made
engine stores objects and re-assembles them for the
client at run-time.

Ever heard of such a beast?

 
Sounds like it might be a Sun Java approach to database programming. Java is very object oriented and I think they have developed both the object oriented programming model and also a model for Database Manipulation.

Sun Java has a JDBC for database development. I think they hawk this to people who do development with server based database development.


If you do not like my post feel free to point out your opinion or my errors.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top