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!

Delete Row from ADF Table

646069Oct 6 2008 — edited Oct 6 2008
Hello,

I have an ADF table that displays data joined from two tables: A and B. I programmatically extracted a value (a username) from the displayed ADF table as follows:

DCIteratorBinding iter = ADFUtils.findIterator(iterator);
Row curRow = iter.getCurrentRow();
String name = (String)curRow.getAttribute("User");


Now I need to programmatically delete a row from a total different table "C" that has "name" as the primary key.

Any help will be appreciated.

Thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 3 2008
Added on Oct 6 2008
3 comments
1,081 views