dam_describeTable
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This method returns the attributes of the current table being processed. This method is called from ipExecute to find out about the table for which the IP has been called. Pass in NULL for any descriptor in which you have no interest.
void dam_describeTable(
long hstmt,
StringBuffer pCatalog,
StringBuffer pSchema,
StringBuffer pTableName,
StringBuffer pTablePath,
StringBuffer pUserData)
Parameters for dam_describeTable
| Parameter | Type | Description |
| INPUT | ||
| hstmt | long | The statement handle. |
| OUTPUT | ||
| pCatalog | StringBuffer | The table qualifier as entered in the OA_TABLES table. |
| pSchema | StringBuffer | The table owner as entered in the OA_TABLES table. |
| pTableName | StringBuffer | The name of the table. |
| pTablePath | StringBuffer | Path of the table that is specified in the path column of the OA_TABLES table. This is an IP-specific field. |
| pUserData | StringBuffer | The Table_Userdata as entered in the OA_TABLES table. This can be any string that the IP wants to know about the table. |