vote up 2 vote down star
1

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?

flag
What I mean here is that I can create set of Oracle objects (using 'create or replace type FOO as object..' statements generated using script), that will ease the further development of the pl/sql software (those will basically contain CRUD operations). What do you think, will those objects perform efficiently? – Arino Oct 19 at 12:20

4 Answers

vote up 9 vote down

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!

link|flag
What I mean here is that I can create set of Oracle objects (using 'create or replace type FOO as object..' statements generated using script), that will ease the further development of the pl/sql software (those will basically contain CRUD operations). What do you think, will those objects perform efficiently? – Arino Oct 19 at 12:06
I have never come across a situation where that would be helpful, and am pretty confident that the performance would not be as efficient as the PL/SQL code that didn't use objects. You would also quite likely lose the ability to perform set-based operations and bulk inserts/updates. – Tony Andrews Oct 19 at 12:52
vote up 2 vote down

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/

link|flag
What do you think is this technique is effective one? – Arino Oct 19 at 12:46
I think it depends on the reason behind the abstraction and the size of the project. If you have 100s of tables it could quickly become an maintenance nightmare. Performance could also be an concern. In general I try to avoid this pattern unless it is the only way to meet security ( SOX, HIPPA, etc ) concerns. – Quest4Denali Oct 19 at 19:24
vote up 3 vote down

Take a read through these two articles - they contain some interesting points

Ask Tom - Relational VS Object Oriented Database Design

Ask Tom - Object relational impedance mismatch

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.