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_procedures

(PHP 4, PHP 5, PHP 7) Get the list of procedures stored in a specific data source resource odbc_procedures ( resource $connection_id ) resource odbc_procedures ( resource $connection_id , string $qualifier , string $owner , string $name ) Lists all procedures in the requested range. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

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_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_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_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_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_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_field_precision

(PHP 4, PHP 5, PHP 7) Alias of odbc_field_len() This function is an alias of: odbc_field_len(). See also: odbc_field_scale() -

odbc_field_name

(PHP 4, PHP 5, PHP 7) Get the columnname string odbc_field_name ( resource $result_id, int $field_number ) Gets the name of the field occupying the given column number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns: