QUERY-PREPARE( ) method
Compiles a predicate (query condition).
Return type: LOGICAL
Applies to: Query object handle
predicate-expression
The QUERY-PREPARE method corresponds to the OPEN QUERY statement’s compilation phase. To open the query object, use the QUERY-OPEN method.
If the QUERY-PREPARE method encounters an error, it returns FALSE and generates an error message, but does not raise ERROR. If you use the QUERY-PREPARE method in a statement that uses the NO-ERROR option and an error occurs, the QUERY-PREPARE method returns FALSE and diverts the error to the ERROR-STATUS system handle. In either instance, ERROR-STATUS:ERROR returns FALSE. You can get information on the error through the GET-MESSAGE method of the ERROR-STATUS system handle, as usual.
Note: The QUERY-PREPARE method is compatible with indexed reposition of queries with joins. Inpredicate-expression
, just include the INDEXED-REPOSITION option. For more information on the INDEXED-REPOSITION option, see the reference entry for the OPEN QUERY statement.The following are examples:
Unless explicitly specified otherwise in the
predicate-expression
, the default record lock type for the QUERY-PREPARE method is NO-LOCK.Like the FOR statement, the QUERY-PREPARE method
predicate-expression
supports the BREAK and BY options for sorting and accumulating data by break groups.
To test whether a break group has changed, you can use the FIRST-OF( ) method and LAST-OF( ) method of the query object handle.
The QUOTER function can be used to wrap character values with internal quotes, as in this example:
Note: The NAME attribute of the Temp-table object handle is writeable for dynamic and AVM-generated temp-tables. You might need to update apredicate-expression
that references a renamed temp-table with new strings using the new table name.See also: OPEN QUERY statement
OpenEdge Release 10.2B
|