odbc_field_type

(PHP 4, PHP 5, PHP 7) Datatype of a field string odbc_field_type ( resource $result_id, int $field_number ) Gets the SQL type of the field referenced by number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns: Return

odbc_field_scale

(PHP 4, PHP 5, PHP 7) Get the scale of a field int odbc_field_scale ( resource $result_id, int $field_number ) Gets the scale of the field referenced by number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns: Return

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

odbc_field_num

(PHP 4, PHP 5, PHP 7) Return column number int odbc_field_num ( resource $result_id, string $field_name ) Gets the number of the column slot that corresponds to the named field in the given result identifier. Parameters: result_id The result identifier. field_name The field name. Returns: Returns the field numb

odbc_fetch_row

(PHP 4, PHP 5, PHP 7) Fetch a row bool odbc_fetch_row ( resource $result_id [, int $row_number ] ) Fetches a row of the data that was returned by odbc_do() or odbc_exec(). After odbc_fetch_row() is called, the fields of that row can be accessed with odbc_result(). Parameters: result_id The result identifier. row_number If row_number is

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_field_len

(PHP 4, PHP 5, PHP 7) Get the length (precision) of a field int odbc_field_len ( resource $result_id, int $field_number ) Gets the length of the field referenced by number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns:

odbc_foreignkeys

(PHP 4, PHP 5, PHP 7) Retrieves a list of foreign keys resource odbc_foreignkeys ( resource $connection_id, string $pk_qualifier, string $pk_owner, string $pk_table, string $fk_qualifier, string $fk_owner, string $fk_table ) Retrieves a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table Parameters:

odbc_fetch_into

(PHP 4, PHP 5, PHP 7) Fetch one result row into array int odbc_fetch_into ( resource $result_id, array &$result_array [, int $rownumber ] ) Fetch one result row into array. Parameters: result_id The result resource. result_array The result array that can be of any type since it will be converted to type array. The array will contain

odbc_fetch_array

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Fetch a result row as an associative array array odbc_fetch_array ( resource $result [, int $rownumber ] ) Fetch an associative array from an ODBC query. Parameters: result The result resource from odbc_exec(). rownumber Optionally choose which row number to retrieve. Returns: