in reply to Re: Is Perl Truly an Object Oriented Language?
in thread Is Perl Truly an Object Oriented Language?

To clarify the aspects of both types of databases a bit: I'm using an OO database at work stuffed with genomics data based on the AceDB database. The problem with object-oriented databases is that they (at least not AceDB) don't support relationships except when defined in the objects themselves. Let me explain: suppose you want to store the names of villages and the persons living in those villages:
  • Comment on Re^2: Is Perl Truly an Object Oriented Language?

Replies are listed 'Best First'.
Re^3: Is Perl Truly an Object Oriented Language?
by Corion (Patriarch) on Dec 03, 2004 at 13:09 UTC

    Of course, you could solve this problem in the same way you solve it with a relational database, by introducing the Residency object (you called it villages2persons), and then navigating Village->Residency->Person to get at the persons of a village, but that way, you've just replicated the relational model onto the object database - which most likely isn't what was intended.