Is there a way to know if TAdoQuery in Edit state was changed?

Assuming we forced it into edit state, and we want to ask the user if he wants to keep the changes.

link|improve this question

Hi there, could you please re-accept the answer to the kobik's one, please ? I've answered something else; his answer is the right one. I'll delete my post from here, but I can't because it's blocked by the accept. Thank you! – TLama Apr 4 at 15:12
feedback

1 Answer

up vote 4 down vote accepted

You have the TADOQuery.Modified property e.g:

if ADOQuery1.State in [dsEdit, dsInsert] and (ADOQuery1.Modified) then
  if KeepChanges then
    ADOQuery1.Post
  else
    ADOQuery1.Cancel;        
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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