MSSQL_RES_ROW_T¶
Returns MSSQL Response Row object
This topic lists the expressions that are provided by this class.
DOUBLE_ELEM (uint j)
returns double value from j'th column of i'th row of the table. Following C conventions, both index i and j start from 0 only, hence row i and comlumn j is actually (i+1)th row and (j+1)th column.
Parameters (expressions not allowed):
j- column number
Returns: double_at
IS_NULL_ELEM (uint j)
check if j'th column of i'th row of the table is NULL. Following C conventions, both index i and j start from 0 only, hence row i and comlumn j is actually (i+1)th row and (j+1)th column.
Parameters (expressions not allowed):
j- column number
Returns: bool_at
NUM_ELEM (uint j)
Returns integer value from j'th column of i'th row of the table. Following C conventions, both index i and j start from 0 only, hence row i and comlumn j is actually (i+1)th row and (j+1)th column.
Parameters (expressions not allowed):
j- column number
Returns: num_at
TEXT_ELEM (uint j)
Returns string value from j'th column of i'th rows of the table. Following C conventions, both index i and j start from 0 only, hence row i and comlumn j is actually (i+1)th row and (j+1)th column.
Parameters (expressions not allowed):
j- column number
Returns: text_t