odbc_exec() returns BOOLEAN if the query doesn't return a result set.
If the query returns a result set, odbc_exec() returns a resource to that result set.
![]() |
|
||||||||||
|
odbc_prepareDescriptionresource odbc_prepare ( resource connection_id, string query_string )Returns FALSE on error. Returns an ODBC result identifier if the SQL command was prepared successfully. The result identifier can be used later to execute the statement with odbc_execute(). Some databases (such as IBM DB2, MS SQL Server, and Oracle) support stored procedures that accept parameters of type IN, INOUT, and OUT as defined by the ODBC specification. However, the Unified ODBC driver currently only supports parameters of type IN to stored procedures.
In the following code,
odbc_prepare
Ron
30-Aug-2007 02:33
odbc_exec() returns BOOLEAN if the query doesn't return a result set.
bslorence
07-Dec-2006 01:50
Is it just me or is the code above misleading? It makes it look like odbc_execute() returns a resource suitable, say, for passing to one of the odbc_fetch_* functions.
Marek
16-Dec-2004 12:59
Use this example for IBM DB/2: |