maxdb_warning_count

(PECL maxdb >= 1.0) Returns the number of warnings from the last query for the given link int maxdb_warning_count ( resource $link ) Procedural style Object oriented style int $maxdb->warning_count; maxdb_warning_count() returns the number of warnings from the last query in the connection represented by the link parameter. Returns: Number of warnings or zero if there are no warnings.

maxdb_thread_safe

(PECL maxdb >= 7.6.06.04) Returns whether thread safety is given or not bool maxdb_thread_safe ( void ) maxdb_thread_safe() indicates whether the client library is compiled as thread-safe. Returns: TRUE if the client library is thread-safe, otherwise FALSE.

maxdb_use_result

(PECL maxdb >= 1.0) Initiate a result set retrieval resource maxdb_use_result ( resource $link ) Procedural style Object oriented style resource maxdb::use_result ( void ) maxdb_use_result() has no effect. Returns: Returns result or FALSE on failure. Examples: Object oriented style <?php $maxdb = new maxdb("localho

maxdb_stmt_store_result

(PECL maxdb >= 1.0) Transfers a result set from a prepared statement bool maxdb_stmt_store_result ( resource $stmt ) Procedural style Object oriented style object maxdb_stmt::store_result ( void ) maxdb_stmt_store_result() has no functionally effect and should not be used for retrieving data from MaxDB server. Returns: Returns TRUE on success or FALSE on failure.

maxdb_thread_id

(PECL maxdb >= 1.0) Returns the thread ID for the current connection int maxdb_thread_id ( resource $link ) Procedural style Object oriented style int $maxdb->thread_id; The maxdb_thread_id() function returns the thread ID for the current connection which can then be killed using the maxdb_kill() function. If the connection is lost and you reconnect with maxdb_ping(), the thread ID will be other. Therefore you should

maxdb_store_result

(PECL maxdb >= 1.0) Transfers a result set from the last query resource maxdb_store_result ( resource $link ) Procedural style Object oriented style object maxdb::store_result ( void ) This function has no functionally effect. Returns: Returns a result resource or FALSE if an error occurred. See also: maxdb_

maxdb_stmt_reset

(PECL maxdb >= 1.0) Resets a prepared statement bool maxdb_stmt_reset ( resource $stmt ) Procedural style Object oriented style bool maxdb_stmt::reset ( void ) This function is currently not documented; only its argument list is available.

maxdb_stmt_result_metadata

(PECL maxdb >= 1.0) Returns result set metadata from a prepared statement resource maxdb_stmt_result_metadata ( resource $stmt ) Procedural style Object oriented style resource maxdb_stmt::result_metadata ( void ) If a statement passed to maxdb_prepare() is one that produces a result set, maxdb_stmt_result_metadata() returns the result resource that can be used to process the meta information such as total number of fiel

maxdb_stmt_sqlstate

(PECL maxdb >= 1.0) Returns SQLSTATE error from previous statement operation string maxdb_stmt_sqlstate ( resource $stmt ) Returns a string containing the SQLSTATE error code for the most recently invoked prepared statement function that can succeed or fail. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. Note: Note that not all MaxDB errors are yet ma

maxdb_stmt_init

(PECL maxdb >= 1.0) Initializes a statement and returns an resource for use with maxdb_stmt_prepare resource maxdb_stmt_init ( resource $link ) Procedural style Object oriented style object maxdb::stmt_init ( void ) Allocates and initializes a statement resource suitable for maxdb_stmt_prepare(). Note: Any subsequent calls to any maxdb_stmt function will fail until maxdb_stmt_prepare() was called.