dam_describeView/dam_describeViewW
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 9.0
- Documentation
These functions return the Catalog Name, Schema Name, and View Name. The dam_describeViewW function returns the Catalog Name, Schema Name, and View Name for Unicode.
Any of the parameters can be set to NULL if the corresponding information is not required.
void dam_describeView(
DAM_HSTMT hstmt,
char * pCatalog,
char * pSchema,
char * pViewName)
void dam_describeViewW(
DAM_HSTMT hstmt,
OAWCHAR * pCatalog,
OAWCHAR * pSchema,
OAWCHAR * pViewName)
Parameters for dam_describeView/dam_describeViewW
| Parameter | Type | Description |
| IN | ||
| hstmt | DAM_HSTMT | The statement handle. |
| pCatalog | char * OAWCHAR * |
If not set to NULL, returns the CatalogName. |
| pSchema | char * OAWCHAR * |
If not set to NULL, returns the SchemaName. |
| OUT | ||
| pViewName | char * OAWCHAR * |
If not set to NULL, returns the ViewName. |