Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PL/SQL (Insert/Update/Delete/Select) based Entity Object

445238Sep 4 2006 — edited Sep 11 2006
I am trying to implement a PL/SQL Entity Object according to section "26.4 Basing an Entity Object on a PL/SQL Package API" of ADF BC User Guide.

I am also looking at Steve example "36. Composite Entity Using Stored Procedure API to Create/Modify/Remove Master and Children"

However in my case the Select operation must also be done through a PL/SQL.

Section "26.4.5 Adding Select and Lock Handling" says to override method doSelect().
So I started by adding the following to the EntityImpl class:

protected void doSelect(boolean b) {
System.err.println("doSelect");
super.doSelect(b);
}

...however that method it's not being called (at least when I test it through the BC tester).

Which method(s) should I override to get the desired behavior ? Any available example ?

Thanks,
Claudio.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 9 2006
Added on Sep 4 2006
14 comments
1,339 views