dam_getOriginalQueryParamValue
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This function returns the type, value, and length of the parameter specified in the original query.
int dam_getOriginalQueryParamValue(
long hstmt,
int iParam,
int * piXoType,
void ** ppParamVal,
long * plValLen)
Properties of dam_getOriginalQueryParamValue
| Parameter | Type | Description |
| IN | ||
| hstmt | long | The statement handle. |
| iParam | int * | The parameter index. Its value starts from zero. |
| OUT | ||
| piXoType | int * | The data type of the result value. |
| ppParamVal | void ** | The pointer to the data is returned in this location. The C type of the data corresponds to the piXoType value. See Table SQL Engine Data Types and the Corresponding C Types. Use this pointer only if the plValLen is not set to XO_NULL_DATA. Do not attempt to free this data. |
| plValLen | long * | The length of the data pointed to by ppParamVal: |
| RETURN | ||
| int | The status of the function call: |