Retrieving Changed Rows

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
developeradmin
Posts: 11
Joined: Tue 25 Mar 2008 09:55

Retrieving Changed Rows

Post by developeradmin » Fri 11 Dec 2009 09:39

Hi,
How can I getting changed (updated, deleted, adding) record from TVirtualTable?

For Example
DataSet myChangedRecords = myDataSet.GetChanges(DataRowState.Added);

Regards,

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Post by Dimon » Fri 11 Dec 2009 10:59

VirtualTable doesn't support retrieving all changed rows. In order to solve this problem you can use the UpdateRecordTypes property.
Also you can view discussion about it in the following topic: http://www.devart.com/forums/viewtopic.php?t=10789

Post Reply