maxdb_connect_error

(PECL maxdb >= 1.0) Returns a string description of the last connect error string maxdb_connect_error ( void ) The maxdb_connect_error() function is identical to the corresponding maxdb_connect_errno() function in every way, except instead of returning an integer error code the maxdb_connect_error() function will return a string representation of the last error to occur for the last maxdb_connect() call. If no error has o

maxdb_connect_errno

(PECL maxdb >= 1.0) Returns the error code from last connect call int maxdb_connect_errno ( void ) The maxdb_connect_errno() function will return the last error code number for last call to maxdb_connect(). If no errors have occurred, this function will return zero. Returns: An error code value for the last call to maxdb_connect(), if it failed. zero means no error occurred.

maxdb_close_long_data

(PECL maxdb >= 1.0) Alias of maxdb_stmt_close_long_data() This function is an alias of: maxdb_stmt_close_long_data(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

maxdb_commit

(PECL maxdb >= 1.0) Commits the current transaction bool maxdb_commit ( resource $link ) Procedural style Object oriented style bool maxdb::commit ( void ) Commits the current transaction for the database connection specified by the link parameter. Returns: Returns TRUE on success or FALSE on failure. Examples: Object oriented styl

maxdb_close

(PECL maxdb >= 1.0) Closes a previously opened database connection bool maxdb_close ( resource $link ) Procedural style Object oriented style bool maxdb::close ( void ) The maxdb_close() function closes a previously opened database connection specified by the link parameter. Returns: Returns TRUE on success or FALSE on failure.

maxdb_affected_rows

(PECL maxdb >= 1.0) Gets the number of affected rows in a previous MaxDB operation int maxdb_affected_rows ( resource $link ) Procedural style Object oriented style int $maxdb->affected_rows; maxdb_affected_rows() returns the number of rows affected by the last INSERT, UPDATE, or DELETE query associated with the provided link parameter. If this number cannot be determined, this function will return -1. Note: For S

maxdb_autocommit

(PECL maxdb >= 1.0) Turns on or off auto-commiting database modifications bool maxdb_autocommit ( resource $link, bool $mode ) Procedural style Object oriented style bool maxdb::auto_commit ( bool $mode ) maxdb_autocommit() is used to turn on or off auto-commit mode on queries for the database connection represented by the link resource. Returns: Returns TRUE on success or FALSE on failure.

maxdb_character_set_name

(PECL maxdb >= 1.0) Returns the default character set for the database connection string maxdb_character_set_name ( resource $link ) Procedural style Object oriented style string maxdb::character_set_name ( void ) Returns the current character set for the database connection specified by the link parameter. Returns: The default character set for the current connection, either ascii or unicode.

ingres_unbuffered_query

(No version information available, might only be in Git) Send an unbuffered SQL query to Ingres mixed ingres_unbuffered_query ( resource $link, string $query [, array $params [, string $types ]] ) ingres_unbuffered_query() sends the given query to the Ingres server. The query becomes part of the currently open transaction. If there is no open transaction, ingres_unbuffered_query() opens a new transaction. To close the tran

maxdb_change_user

(PECL maxdb >= 1.0) Changes the user of the specified database connection bool maxdb_change_user ( resource $link, string $user, string $password, string $database ) Procedural style Object oriented style bool maxdb::change_user ( string $user , string $password , string $database ) maxdb_change_user() is used to change the user of the specified database connection as given by the link parameter and to set the current da