sasql_stmt_num_rows

Prototype
int sasql_stmt_num_rows( sasql_stmt $stmt )
Description

Returns the number of rows in the result set. The actual number of rows in the result set can only be determined after the sasql_stmt_store_result function is called to buffer the entire result set. If the sasql_stmt_store_result function has not been called, 0 is returned.

Parameters

$stmt   A statement resource that was executed by sasql_stmt_execute and sasql_stmt_store_result was called on.

Returns

The number of rows available in the result or 0 on failure.

Related functions