odbc_tableprivileges

(PHP 4, PHP 5, PHP 7) Lists tables and the privileges associated with each table resource odbc_tableprivileges ( resource $connection_id, string $qualifier, string $owner, string $name ) Lists tables in the requested range and the privileges associated with each table. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

PDO::beginTransaction

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Initiates a transaction public bool PDO::beginTransaction ( void ) Turns off autocommit mode. While autocommit mode is turned off, changes made to the database via the PDO object instance are not committed until you end the transaction by calling PDO::commit(). Calling PDO::rollBack() will roll back all changes to the database and return the connection to autocommit mode.

odbc_tables

(PHP 4, PHP 5, PHP 7) Get the list of table names stored in a specific data source resource odbc_tables ( resource $connection_id [, string $qualifier [, string $owner [, string $name [, string $types ]]]] ) Lists all tables in the requested range. To support enumeration of qualifiers, owners, and table types, the following special semantics for the qualifier, owner, name, and table_type are available: If qualifier is a

odbc_specialcolumns

(PHP 4, PHP 5, PHP 7) Retrieves special columns resource odbc_specialcolumns ( resource $connection_id, int $type, string $qualifier, string $owner, string $table, int $scope, int $nullable ) Retrieves either the optimal set of columns that uniquely identifies a row in the table, or columns that are automatically updated when any value in the row is updated by a transaction. Parameters:

odbc_result

(PHP 4, PHP 5, PHP 7) Get result data mixed odbc_result ( resource $result_id, mixed $field ) Get result data Parameters: result_id The ODBC resource. field The field name being retrieved. It can either be an integer containing the column number of the field you want; or it can be a string containing the name of the field.

odbc_setoption

(PHP 4, PHP 5, PHP 7) Adjust ODBC settings bool odbc_setoption ( resource $id, int $function, int $option, int $param ) This function allows fiddling with the ODBC options for a particular connection or query result. It was written to help find work around to problems in quirky ODBC drivers. You should probably only use this function if you are an ODBC programmer and understand the effects the various options will have. You

odbc_result_all

(PHP 4, PHP 5, PHP 7) Print result as HTML table int odbc_result_all ( resource $result_id [, string $format ] ) Prints all rows from a result identifier produced by odbc_exec(). The result is printed in HTML table format. Parameters: result_id The result identifier. format Additional overall table formatting. Return

odbc_statistics

(PHP 4, PHP 5, PHP 7) Retrieve statistics about a table resource odbc_statistics ( resource $connection_id, string $qualifier, string $owner, string $table_name, int $unique, int $accuracy ) Get statistics about a table and its indexes. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. qualifier The

odbc_rollback

(PHP 4, PHP 5, PHP 7) Rollback a transaction bool odbc_rollback ( resource $connection_id ) Rolls back all pending statements on the connection. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. Returns: Returns TRUE on success or FALSE on failure.

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