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.
int64 dam_getFirstValueSet(
int64 hstmt,
int64 hrow)
Parameters for dam_getFirstIValueSet
| Parameter | Type | Description |
| IN | ||
| hstmt | int64 | The statement handle |
| hrow | int64 | The row handle |
| RETURN | ||
| int64 | The handle to the update/insert value set. 0 is returned if the value set is not available. |