Hello:
Found to have such a problem: (unidac 3.003)
UniConnection1.Options.DisconnectedMode:=true;
uniquery1.CachedUpdates:=false;
query1.RefreshOptions: = [roAfterInsert, roAfterUpdate];
Query1 From Sqlserver have calculated field (The calculated field of Sqlserver ) , in the afterpost revealed that the calculated field is not updated from server, you must implement query1.RefreshRecord; or
set uniquery1.Options.SetFieldsReadOnly:=false; before they can.
I wonder if this is not a problem? Should be refreshed automatically calculate the value of the field, right?
Thanks!!!