dam_getCol/dam_getColW
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This function returns the column handle for the given column name. The column name is as defined in the OA_COLUMNS table of the schema database (refer to Schema Definition and Management in the OpenAccess SDK Programmer's Guide).
DAM_HCOL dam_getCol(
DAM_HSTMT hstmt,
char * pszColumnName)
DAM_HCOL dam_getColW(
DAM_HSTMT hstmt,
OAWCHAR * pszColumnName)
Parameters for dam_getCol/dam_getColW
| Parameter | Type | Description |
| IN | ||
| hstmt | DAM_HSTMT | The statement handle. |
| pszColumnName | char * OAWCHAR * |
The name of the column. |
| RETURN | ||
| DAM_HCOL | The handle to specified column. A NULL is returned if the column does not exist. |