Re: Refreshing a current record in a DataSet




Brian,
with ADODataset1 do begin
UpDateCursorPos; {MUST ALWAYS DO!}
RecordSet.Resync(adAffectCurrent, adResyncAllValues);
end;

I does not actually work the way i expect.

I open ADODataset.
then change some current field valuein database and
do
UpDateCursorPos; {MUST ALWAYS DO!}
RecordSet.Resync(adAffectCurrent, adResyncAllValues);

on client. but nothing seems to change.


Any ideas are welcome.

Thank you for attention anyway.
Dmitry


.



Relevant Pages