skip to main content
OpenAccess SDK SQL Engine core methods for .NET : Methods for .NET reference : dam_getOriginalQueryParamValue
 

dam_getOriginalQueryParamValue

This method returns the type, value, and length of the parameter specified in the original query.
Object dam_getOriginalQueryParamValue(
int64 hstmt,
int iParam,
out int piXoType,
out int64 plValLen
out int piValStatus)
 
Table 172: Parameters for dam_getOriginalQueryParamValue
Parameter
Type
Description
IN
 
 
hstmt
int64
The statement handle.
iParam
int
The parameter index. Its value starts from zero.
OUT
 
 
piXoType
out int
The data type of the result value.
plValLen
out int64
The length of the data returned in the object:
XO_NULL_DATA – null data
XO_NTS – null terminated string
>= 0 – length of the data
piValStatus
out int
The status of the method call:
DAM_SUCCESS – all data retrieved
DAM_SUCCESS_WITH_RESULT_PENDING – data is partially retrieved. For the result sets of LONGVARBINARY, WLONGVARCHAR, and LONGVARCHAR types, the IP needs to call on the same parameter index repeatedly to get the complete result set. Once the complete result set is retrieved, the method returns DAM_SUCCESS.
DAM_FAILURE – error in getting the data
RETURN
 
 
 
object
The object that represents the result value. The format of the data depends on the data type returned in piXoType. Use this object only if the piValLen is not set to XO_NULL_DATA. See Table 34.

See also 

dam_getOriginalQueryParamCount