I have been reading about database models and still do not understand what are the fundamental differences between object oriented and object relational models.
I learned so far that object relational database is a relational database also which supports objects. What makes object-oriented database different? (aside from not supporting relational model).
Is the difference also in object-oriented database giving the objects methods - behaviour (like in OO programming languages) while object-relational database only treats them as a structures with attributes and references to other objects? If so, how does one uses these object methods in OO databases?
getPricer()
which would first calculate price and then return it? Q3: What is an example of interface for OO databases? – Ethnomusicology