Does TUniQuery have the property with the same functional as TFIBDataset.AllowedUpdateKinds
Does TUniQuery have the property with the same functional as TFIBDataset.AllowedUpdateKinds
I need to set permissions for insert, update and delete operations directly without clearing appropriate SQLs. Is that possible?
-
AndreyZ
Re: Does TUniQuery have the property with the same functional as TFIBDataset.AllowedUpdateKinds
It is possible to specify the allowed operations when calling the ApplyUpdates method. For more information, please refer to http://www.devart.com/unidac/docs/devar ... kinds).htm
Re: Does TUniQuery have the property with the same functional as TFIBDataset.AllowedUpdateKinds
Have I understood correctly that I have to use the ApplyUpdates method instead of Post?
-
AndreyZ
Re: Does TUniQuery have the property with the same functional as TFIBDataset.AllowedUpdateKinds
The ApplyUpdates method can be used only in the CachedUpdates mode. In this mode, when the Post method is called, all updates are stored on a client. To apply them on the server, you should call the ApplyUpdates method.