sasql_stmt_bind_result

Binds one or more PHP variables to result columns of a statement that was executed, and returns a result set.

Prototype

bool sasql_stmt_bind_result( sasql_stmt $stmt, mixed &$var1 [, mixed &$var2 .. ] )

Parameters

$stmt – A statement resource that was executed by sasql_stmt_execute.
$var1 – References to PHP variables that will be bound to result set columns returned by the sasql_stmt_fetch.

Returns

TRUE on success or FALSE on failure.