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

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

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

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