Used to return a new fields value to dataset after insert or update.
property ReturnParams: boolean stored False;
Use the ReturnParams property to return the new fields value to dataset after insert or update. The actual value of a field after insert or update may be different from the value stored in local memory if a table has a trigger.
When ReturnParams is True, OUT parameters of SQLInsert and SQLUpdate statements are assigned to the corresponding fields.
OUT parameters can have PL/SQL block or DML statements with the RETURNING clause (for Oracle 8 only).
The default value is False.