Used to specify a SQL statement that will be used when applying an update to a dataset.
property SQLUpdate: TStrings;
Use the SQLUpdate property to specify a SQL statement that will be used when applying an update to a dataset. Statements can be parameterized queries. Names of the parameters should be the same as field names. The parameters prefixed with OLD_ allow to use current values of fields prior to the actual operation.
Use ReturnParam to return OUT parameters back to the dataset.
To create a SQLUpdate statement at design-time, use the query statement editor.
UPDATE Orders set ShipName = :ShipName WHERE OrderID = :Old_OrderID