The object-relational-model tag has no wiki summary.
4
votes
2answers
430 views
How can I define a type in oracle11g that references a collection of that type?
I want to do something like this
create type Item as object (
id number,
subitems table of ref Item
)
but oracle throws an exception when I try to do it. Is this possible, and if yes then ...
0
votes
3answers
191 views
Choosing between Symfony's Doctrine ORM files Model.class.php and ModelTable.class.php
when doctrine builds model files for a table, it generates three files, essentially BaseModel.class.php, Model.class.php and ModelTable.class.php. Common knowledge requires that any modifications be ...