Tagged Questions
4
votes
3answers
3k views
How can I detect if ApplyUpdates will Insert or Update data?
In the AfterPost event handler for a ClientDataSet, I need the information if the ApplyUpdates function for the current record will do an update or an insert.
The AfterPost event will be executed for ...
4
votes
3answers
915 views
How long does a TDataset bookmark remain valid?
I have code like below in a project I'm working.
procedure TForm.EditBtnClick(Sender:TObject);
begin
// Mark is form variable. It's private
Mark = cdsMain.GetBookmark;
// blabalbal
.
.
...
0
votes
1answer
237 views
Delphi 2010 MySQL Update through ClientDataSet Failing
I am using Delphi 2010 and connecting to a MySQL database using dbexpress. The connection works 100% and I am retrieving my data. The problem comes when I am trying to update data through a dbGrid. I ...