You can remove a row from the view object cache using the view object
instance or the Row
itself. If the view object instance has
any entity usages, the used entity object instances will be deleted from
the entity cache and removed from the datasource when requested. For
more information, see the related topics list.
You can remove the row in one of two ways:
Row
that you want to
delete (either by inserting it or navigating to it; see the related
topics list for more information), call remove()
on the
Row
:
badRow.remove();
removeCurrentRow()
on the view object instance:
ordVO.removeCurrentRow();
Note: This will not change the current row pointer. Navigate off of the row before performing any other operations.
Ways to Manipulate Data
About Oracle ADF View Objects
About
Oracle ADF Entity Objects
About
Oracle ADF Business Components Cache Management
Posting Data Without Committing
Committing a Transaction
Ways to
Navigate Through Query Results
Inserting a Row
Implementing Row Creation and Deletion Logic
Copyright © 1997, 2004, Oracle. All rights reserved.