dam_describeProcedure
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This method is called from ipProcedure to get information about the stored procedure for which the IP has been called. Pass in NULL for any descriptor in which you have no interest.
void dam_describeProcedure(
int64 hstmt,
StringBuilder pszCatalog,
StringBuilder pszOwner,
StringBuilder pszProcName,
StringBuilder pszUserData)
*Parameters for dam_describeProcedure
| Parameter | Type | Description |
| IN | ||
| hstmt | int64 | The statement handle of the currently active statement |
| OUT | ||
| pszCatalog | StringBuilder | The qualifier as entered in the OA_PROC table |
| pszOwner | StringBuilder | The owner as entered in the OA_PROC table |
| pszProcName | StringBuilder | The name of the procedure |
| pszUserData | StringBuilder | The OA_USERDATA as entered in the OA_PROC table. This can be any string that the IP wants to know about the procedure. |