dam_getFirstValueSet
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This method 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 dam_getColToSet and dam_getValueToSet to get the corresponding column handle and the associated value. The method dam_describeCol can be used with the column handle to obtain the name and number of the target column.
long dam_getFirstValueSet(
long hstmt,
long hRow)
Parameters for dam_getFirstValueSet
| Parameter | Type | Description |
| INPUT | ||
| hstmt | long | The statement handle. |
| hRow | long | The row handle. |
| RETURN | ||
| long | The handle to the update/insert value set. 0 is returned if the value set is not available. | |