odbc_commit

(PHP 4, PHP 5, PHP 7) Commit an ODBC transaction bool odbc_commit ( resource $connection_id ) Commits all pending transactions 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_binmode

(PHP 4, PHP 5, PHP 7) Handling of binary column data bool odbc_binmode ( resource $result_id, int $mode ) Enables handling of binary column data. ODBC SQL types affected are BINARY, VARBINARY, and LONGVARBINARY. When binary SQL data is converted to character C data, each byte (8 bits) of source data is represented as two ASCII characters. These characters are the ASCII character representation of the number in its hexadeci

odbc_close_all

(PHP 4, PHP 5, PHP 7) Close all ODBC connections void odbc_close_all ( void ) odbc_close_all() will close down all connections to database server(s). Returns: No value is returned. Notes: This function will fail if there are open transactions on a connection. This connection will remain open in this case.

odbc_autocommit

(PHP 4, PHP 5, PHP 7) Toggle autocommit behaviour mixed odbc_autocommit ( resource $connection_id [, bool $OnOff = false ] ) Toggles autocommit behaviour. By default, auto-commit is on for a connection. Disabling auto-commit is equivalent with starting a transaction. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

odbc_columnprivileges

(PHP 4, PHP 5, PHP 7) Lists columns and associated privileges for the given table resource odbc_columnprivileges ( resource $connection_id, string $qualifier, string $owner, string $table_name, string $column_name ) Lists columns and associated privileges for the given table. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

odbc_close

(PHP 4, PHP 5, PHP 7) Close an ODBC connection void odbc_close ( resource $connection_id ) Closes down the connection to the database server. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. Returns: No value is returned. Notes: This function will fail

dbx_fetch_row

(PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set mixed dbx_fetch_row ( object $result_identifier ) dbx_fetch_row() fetches rows from a result identifier that had the DBX_RESULT_UNBUFFERED flag set. When the DBX_RESULT_UNBUFFERED is not set in the query, dbx_fetch_row() will fail as all rows have already been fetched into the results data property. As a

dbx_sort

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Sort a result from a dbx_query by a custom sort function bool dbx_sort ( object $result, string $user_compare_function ) Sort a result from a dbx_query() call with a custom sort function. Parameters: result A result set returned by dbx_query(). user_compare_function The user

dbx_error

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Report the error message of the latest function call in the module string dbx_error ( object $link_identifier ) dbx_error() returns the last error message. Parameters: link_identifier The DBX link object returned by dbx_connect() Returns: Returns a string containing the error message

dbx_query

(PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Send a query and fetch all results (if any) mixed dbx_query ( object $link_identifier, string $sql_statement [, int $flags ] ) Sends a query and fetch all results. Parameters: link_identifier The DBX link object returned by dbx_connect() sql_statement SQL statement. Data ins