Additional
dbCAP
AnyDAC
ThinDAC
NCOCI8
Topic: record not found
record not found
Posted: 2002/08/23 06:53
 
hi,

I use TOCIQuery, TDataSetProvider, TClientDataSet.

here is my code:
myquery.close;
myquery.sql.clear
myquery.sql := 'select t.*,t.rowid from emp t';
myquery.open;
myprovider.dataset := myquery;
mycds.provider := myprovider;
mycds.open;

I delete one record using navigator button.

here is my commit button code:
mycds.applyupdates(0);

after I click commit button, the following error appear:
"Record not found".

pls help

fh