maxdb_server_end

(PECL maxdb >= 1.0) Shut down the embedded server void maxdb_server_end ( void ) This function is currently not documented; only its argument list is available.

maxdb_rpl_parse_enabled

(PECL maxdb >= 1.0) Check if RPL parse is enabled int maxdb_rpl_parse_enabled ( resource $link ) This function is currently not documented; only its argument list is available.

maxdb_rpl_probe

(PECL maxdb >= 1.0) RPL probe bool maxdb_rpl_probe ( resource $link ) This function is currently not documented; only its argument list is available.

maxdb_select_db

(PECL maxdb >= 1.0) Selects the default database for database queries bool maxdb_select_db ( resource $link, string $dbname ) The maxdb_select_db() function selects the default database (specified by the dbname parameter) to be used when performing queries against the database connection represented by the link parameter. Note: This function should only be used to change the default database for the connection. You ca

maxdb_send_query

(PECL maxdb >= 1.0) Send the query and return bool maxdb_send_query ( resource $link, string $query ) Procedural style Object oriented style bool maxdb::send_query ( string $query ) This function is currently not documented; only its argument list is available.

maxdb_real_query

(PECL maxdb >= 1.0) Execute an SQL query bool maxdb_real_query ( resource $link, string $query ) Procedural style Object oriented style bool maxdb::real_query ( string $query ) The maxdb_real_query() is functionally identical with the maxdb_query(). Note: In order to determine if a given query should return a result set or not, see maxdb_field_count(). Returns: Returns TRUE on success or

maxdb_send_long_data

(PECL maxdb >= 1.0) Alias of maxdb_stmt_send_long_data() This function is an alias of: maxdb_stmt_send_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_rollback

(PECL maxdb >= 1.0) Rolls back current transaction bool maxdb_rollback ( resource $link ) Procedural style Object oriented style bool maxdb::rollback ( void ) Rollbacks the current transaction for the database specified by the link parameter. Returns: Returns TRUE on success or FALSE on failure. Examples: Object oriented style

maxdb_report

(PECL maxdb 1.0) Enables or disables internal report functions bool maxdb_report ( int $flags ) Parameters: flags One of the MAXDB_REPORT_XXX constants. Returns: Returns TRUE on success or FALSE on failure. Examples: Procedural style <?php /* activate reporting */ maxdb

maxdb_rpl_query_type

(PECL maxdb >= 1.0) Returns RPL query type int maxdb_rpl_query_type ( resource $link ) Procedural style Object oriented style int maxdb::rpl_query_type ( void ) This function is currently not documented; only its argument list is available.