Читаю в хелпе BCB6...
| Цитата | TCustomADODataSet::DeleteRecords
Description .... If the dataset was opened in batch update mode, the records are only marked for deletion. Apply the batch deletions by calling the UpdateBatch method.
|
Радуюсь и использую в коде...
| Код | dstClientInfo->DeleteRecords(arCurrent);
|
Пытаюсь воспользоваться плодами...
| Код | void __fastcall TfrmFirmInfo::btnSaveClick(TObject *Sender) { TUpdateStatus pST = dstClientInfo->UpdateStatus();
if (pST == usDeleted) dstClientInfo->UpdateBatch(arCurrent); }
|
Но не тут то было... статус usUnmodified |