Updates to backend database via RemoteDB

Current we are still relying on using TClientDataset to reuse all existing features including CachedUpdates.

Hi Rhett,
since it is not possible to manage cached updates with TXdataset, I thought of using your code, modified for filling a support TXdataset which therefore already contains the sql to then be executed in a single step, such as Applyupdates.

Is possible to have also the 2 missing functions: UpdateACommentWithList and UpdateABlobWithStream?

Thanks in advance!!!
Stefano

How can we get more information about this: "You can use TXDataset as a dataset provider to TClientDataset ". Could you help me with an example?

Drop a TXDataset component in the form.
Drop a TDatasetProvider component in the form and set its Dataset property to XDataset1.
Drop a TClientDataset component in the form set its ProviderName property to DataSetProvider1.

Thank you very much!! I will try.