skip to main content
SQL Engine parse tree methods for .NET : SQL pass-through and advanced query methods reference : damex_describeUpdateQuery
 

damex_describeUpdateQuery

This method returns details about the UPDATE query.
int damex_describeUpdateQuery(
int64 hquery,
out int64 phTable,
out int64 phUpdateRow,
out int64 phSearchExp)
 
Table 224: Parameters for damex_describeUpdateQuery 
Parameter
Type
Description
IN
 
 
hquery
int64
The query handle.
OUT
 
 
phTable
int64
The handle to the update table. Call damex_describeTable to get the table details.
phUpdateRow
int64
The handle to the update row. Use damex_getFirstUpdateSet, damex_getNextUpdateSet to get the update set handles containing the column and value information of each column that should be updated.
phSearchExp
int64
The handle to the search expression in the WHERE clause. Use damex_describeLogicExp to get details about the logical search expression.
 
RETURN
 
 
 
int
DAM_SUCCESS – on success
DAM_FAILURE – on failure

See also 

damex_describeLogicExp
damex_describeTable
damex_getFirstUpdateSet
damex_getNextUpdateSet