Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

odbc_exec(3) [php man page]

ODBC_EXEC(3)								 1							      ODBC_EXEC(3)

odbc_exec - Prepare and execute an SQL statement

SYNOPSIS
resource odbc_exec (resource $connection_id, string $query_string, [int $flags]) DESCRIPTION
Sends an SQL statement to the database server. PARAMETERS
o $connection_id -The ODBC connection identifier, see odbc_connect(3) for details. o $query_string - The SQL statement. o $flags - This parameter is currently not used. RETURN VALUES
Returns an ODBC result identifier if the SQL command was executed successfully, or FALSE on error. SEE ALSO
odbc_prepare(3), odbc_execute(3). PHP Documentation Group ODBC_EXEC(3)

Check Out this Related Man Page

DB2_STMT_ERROR(3)							 1							 DB2_STMT_ERROR(3)

db2_stmt_error - Returns a string containing the SQLSTATE returned by an SQL statement

SYNOPSIS
string db2_stmt_error ([resource $stmt]) DESCRIPTION
Returns a string containing the SQLSTATE value returned by an SQL statement. If you do not pass a statement resource as an argument to db2_stmt_error(3), the driver returns the SQLSTATE value associated with the last attempt to return a statement resource, for example, from db2_prepare(3) or db2_exec(3). To learn what the SQLSTATE value means, you can issue the following command at a DB2 Command Line Processor prompt: db2 '? $sqlstate- value'. You can also call db2_stmt_errormsg(3) to retrieve an explicit error message and the associated SQLCODE value. PARAMETERS
o $stmt - A valid statement resource. RETURN VALUES
Returns a string containing an SQLSTATE value. SEE ALSO
db2_conn_error(3), db2_conn_errormsg(3), db2_stmt_errormsg(3). PHP Documentation Group DB2_STMT_ERROR(3)
Man Page