skip to main content
OpenAccess SDK SQL Engine Core Functions API : Function Reference : dam_describeView/dam_describeViewW
 

dam_describeView/dam_describeViewW

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)
Table 93. 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.