Page 1 of 1

Remove, disable or sign records in Query

Posted: Fri 11 Sep 2009 10:31
by iimu
Hi!

When I am browsing my dataset records how can remove, disable or somehow sign certain records in Query without update database ?

Posted: Mon 14 Sep 2009 14:44
by Plash
You can add a field based on an expression to your query:

SELECT ..., 1 MyField

If the SetFieldsReadOnly option of TOraQuery is False, you can edit this field. Changes will not be posted to the database because the field does not have corresponding column in the table.