SearchedEdits property

Applies to
TIB_Dataset

Declaration
Property SearchedEdits : boolean;

Description
This property will make behind the scenes updates performed with searched updates instead of positioned updates. In other words, if you look in the SQL trace monitor you will see:

UPDATE < table > SET < col > = < val > WHERE < pk col >= ?< pk param >

instead of:

WHERE CURRENT OF < cursor name >.

Only datasets with a single relation can be live with SearchedUpdates. If you have a joined dataset that you want to be live then you must use positioned updates.