odbc_procedurecolumns

(PHP 4, PHP 5, PHP 7) Retrieve information about parameters to procedures resource odbc_procedurecolumns ( resource $connection_id ) resource odbc_procedurecolumns ( resource $connection_id , string $qualifier , string $owner , string $proc , string $column ) Retrieve information about parameters to procedures. Parameters: connection_id The ODBC connection identifier, see

odbc_primarykeys

(PHP 4, PHP 5, PHP 7) Gets the primary keys for a table resource odbc_primarykeys ( resource $connection_id, string $qualifier, string $owner, string $table ) Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

odbc_prepare

(PHP 4, PHP 5, PHP 7) Prepares a statement for execution resource odbc_prepare ( resource $connection_id, string $query_string ) Prepares a statement for execution. 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. H

odbc_pconnect

(PHP 4, PHP 5, PHP 7) Open a persistent database connection resource odbc_pconnect ( string $dsn, string $user, string $password [, int $cursor_type ] ) Opens a persistent database connection. This function is much like odbc_connect(), except that the connection is not really closed when the script has finished. Future requests for a connection with the same dsn, user, password combination (via odbc_connect() and odbc_pcon

odbc_num_rows

(PHP 4, PHP 5, PHP 7) Number of rows in a result int odbc_num_rows ( resource $result_id ) Gets the number of rows in a result. For INSERT, UPDATE and DELETE statements odbc_num_rows() returns the number of rows affected. For a SELECT clause this can be the number of rows available. Parameters: result_id The result identifier returned by odbc_exec(). R

odbc_num_fields

(PHP 4, PHP 5, PHP 7) Number of columns in a result int odbc_num_fields ( resource $result_id ) Gets the number of fields (columns) in an ODBC result. Parameters: result_id The result identifier returned by odbc_exec(). Returns: Returns the number of fields, or -1 on error.

odbc_next_result

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Checks if multiple results are available bool odbc_next_result ( resource $result_id ) Checks if there are more result sets available as well as allowing access to the next result set via odbc_fetch_array(), odbc_fetch_row(), odbc_result(), etc. Parameters: result_id The result identifier. Returns: Returns TRUE i

odbc_longreadlen

(PHP 4, PHP 5, PHP 7) Handling of LONG columns bool odbc_longreadlen ( resource $result_id, int $length ) Enables handling of LONG and LONGVARBINARY columns. Parameters: result_id The result identifier. length The number of bytes returned to PHP is controlled by the parameter length. If it is set to 0, Long column data is passed through

odbc_gettypeinfo

(PHP 4, PHP 5, PHP 7) Retrieves information about data types supported by the data source resource odbc_gettypeinfo ( resource $connection_id [, int $data_type ] ) Retrieves information about data types supported by the data source. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. data_type The dat

odbc_free_result

(PHP 4, PHP 5, PHP 7) Free resources associated with a result bool odbc_free_result ( resource $result_id ) Free resources associated with a result. odbc_free_result() only needs to be called if you are worried about using too much memory while your script is running. All result memory will automatically be freed when the script is finished. Parameters: result_id The re