I want to find out that data in record was really changed
With OracleDataSet1 do
begin
Edit;
FieldByName('id').AsInteger := 1; // old value = 1 and new value = 1
... // There are a lot of records where old value is equal new value
Post;
if Modified then ... // Modified = True, but it's not right actually
end;
Is there a property which can show changing data in record in fact? (If not, please add this property)
With OracleDataSet1 do
begin
Edit;
FieldByName('id').AsInteger := 1; // old value = 1 and new value = 1
... // There are a lot of records where old value is equal new value
Post;
if Modified then ... // Modified = True, but it's not right actually
end;
Is there a property which can show changing data in record in fact? (If not, please add this property)