sasql_query

Prepares and executes the SQL query $sql_str on the connection identified by $conn that has already been opened using sasql_connect or sasql_pconnect. The sasql_query function is equivalent to calling two functions, sasql_real_query and one of sasql_store_result or sasql_use_result.

Prototype

mixed sasql_query( sasql_conn $conn, string $sql_str [, int $result_mode ] )

Parameters

$conn – The connection resource returned by a connect function.
$sql_str – A SQL statement supported by SQL Anywhere.
$result_mode – Either SASQL_USE_RESULT, or SASQL_STORE_RESULT (the default).

Returns

FALSE on failure; TRUE on success for INSERT, UPDATE, DELETE, CREATE; sasql_result for SELECT.