Is there any way to manually track the changes done to a clientdataset's delta and update the changes manually on to then db. i have dynamically created a clientdataset and with out a provider i am able to load it with a tquery, now user will do some insert update and delete operations on the data available in the cds, and at final stage these data(modified) should be post in to database by using a tquery(not apply updates)..

link|improve this question

What's the reason you're using a cds without a provider to access and modify a database? You can create dynamically a provider as well. Otherwise you're going to reimplement a TDatasetProvider from scratch. – user160694 Jun 12 '10 at 17:01
hi idsandon, its a client requirement not to use the provider, its a new project yet to start, dono exactly what the issue he does'nt want it and the app. i am doing is a moke sort of thing, that we can work with cds without provider – Vijay Bobba Jun 13 '10 at 7:57
feedback

2 Answers

up vote 2 down vote accepted

After populating your data set from the TQuery call MergeChangeLog so that the records do not stand out as newly inserted, and be sure that LogChanges is set.

Then when at the final stage, before updating the query with the dataset, set StatusFilter so that only the records that you want to take action on should be showing. For instance;

ClientDataSet1.StatusFilter := [usDeleted];

You can also use UpdateStatus on a record to see if it has been modified etc..

But be careful that, is seems that there will be multiple versions of a record, and it is a bit difficult to understand how the "change log" keeps track. And there also can be multiple actions on a record, like modifying it a few times and then deleting it.

link|improve this answer
In which event can i use this UpdateStatus? – Vijay Bobba Jun 14 '10 at 7:19
It is a method of the TClientDataSet which retrieves a value depending on the status of the current record; if ClientDataSet1.UpdateStatus = usInserted then.. In your scenario you can use it while you are done with the dataset and it is time to update the query with the records in it, while looping a set of records for instance. See this page in the documentation: docwiki.embarcadero.com/RADStudio/en/… and of course the pages about StatusFilter and UpdateStatus of TCustomClientDataSet. – Sertac Akyuz Jun 14 '10 at 9:12
@Sertac, the problem is when we are done with the dataset and when its time to update the changes the UpdateStatus is the status of the last modified record. At this last moment i wank to trace through all the records(modified-update/insert/delete) of the delta and manually update the modifications with a TQuery. – Vijay Bobba Jun 14 '10 at 13:32
@Sertac, also the code mentioned in the specified URL indicates about the OnCalcFields event to find the modified records at that instance of time. Now, this event fires only when we have a calculated field defined in the CDS, my doubt is 'is there only this way for my problem' or we have any other without calculated field...?... – Vijay Bobba Jun 14 '10 at 13:43
clearly my problem is, "say suppose a saleman goes to different shops and collect data in a disconnected architecture(nothing but using CDS), so he enters all the sales data(disconnected - into CDS)into the system and once he comes back to the work location with the modified cds data(delta) and connects to the network the information has to be updated on the database, here at this point i must have a method which takes a delta as a perameter and uses TQuery to apply the changes(with out using the applychanges method). – Vijay Bobba Jun 14 '10 at 13:48
show 10 more comments
feedback
Change:= TPacketDataSet.create;

Change.Data:= YourClientDataSet.Delta;
while not Change.Eof do
begin
 Change.InitAltRecBuffers(False);
 if Change.UpdateStatus = usUnmodified then
   Change.InitAltRecBuffers(True);

 case Change.UpdateStatus of
  usModified:  ;//your logic read codes in Provider.pas for further hint
  usInserted:  ;//your logic read codes in Provider.pas for further hint
  usDeleted: ;//your logic read codes in Provider.pas for further hint
 end;

 Change.Next;
end;

Above should work regardless of number of modified Cheers Pham

link|improve this answer
Be careful with that approach, if a record is multiple times modified, or modified and then deleted, you might not find which record is modified/deleted. You've to go through the change log (I think...).. What is IntAltRecBuffers?, I can't find such thing in D2007... You can use the "Code Sample" button above the edit area when answering a question to have code appear properly formatted. – Sertac Akyuz Jun 12 '10 at 16:19
this code is not going to work because at the final stage say suppose in a 'saveRecords' button click, the Change.UpdateStatus is always usInserted – Vijay Bobba Jun 14 '10 at 7:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.