dam_getFirstValueSet
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This function gets the first value set of a row that has been retrieved from the OpenAccess SDK SQL engine for update, insert or stored procedure processing. A value set consists of the column handle and the value for that column.
Use the functions dam_getColToSet and dam_getValueToSet to retrieve the corresponding column handle and the associated value.
Use the function dam_describeCol with the column handle to retrieve the name and number of the target column.
DAM_HROWELEM dam_getFirstValueSet(
DAM_HSTMT hstmt,
DAM_HROW hrow)
Parameters for dam_getFirstValueSet
| Parameter | Type | Description |
| IN | ||
| hstmt | DAM_HSTMT | The statement handle. |
| hrow | DAM_HROW | The row handle. |
| RETURN | ||
| DAM_HROWELEM | The handle to the update/insert value set. NULL is returned if value set is not available. |