Hi, I am developing a enterprise software for a big company using Oracle. Major processing unit is planned to be developed in PL/SQL. I am wondered if there is any ORM like Hibernate for Java, but the one for PL/SQL. I have some ideas how to make such a framework using PL/SQL and Orcale system tables, but it is interesting - why no one have done this before? What do you think will that be effective in speed and memory consumption? Why?
|
1
|
|||
|
|
|
ORMs exist to provide an interface between a database-agnostic language like Java and a DBMS like Oracle. PL/SQL in contrast knows the Oracle DBMS intimately and is designed to work with it (and a lot more efficiently than Java + ORM can). So an ORM between PL/SQL and the Oracle DBMS would be both superfluous and unhelpful! |
||||
|
|
|
As Tony pointed out ORMs really serve as helper between the App and Db context boundaries. If you are looking for an additional level of abstraction at the database layer you might want to look into table encapsulation. This was a big trend back in the early 2000s. If you search you will find a ton of whitepapers on this subject. Plsqlintgen still seems to be around at http://sourceforge.net/projects/plsqlintgen/ |
||||
|
|
|
Take a read through these two articles - they contain some interesting points |
||
|
|
|
|
Oracle is a Relation database and also has the ability to work as an object-oriented database as well. It does this by building an abstraction layer (fairly automatically) on top of the relational structure. This would seemingly eliminate the need for any "tool" as it is already built-in. |
||
|
|
