damex_describeUpdateQuery
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This method returns details about the UPDATE query.
int damex_describeUpdateQuery(
long hquery,
long phTable,
long phUpdateRow,
long phSearchExp)
Parameters for damex_describeUpdateQuery
| Parameter | Type | Description |
| INPUT | ||
| hquery | long | The query handle. |
| phTable | long | The handle to the update table. Call damex_describeTable to get the table details. |
| phUpdateRow | long | 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 | long | 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 |
|