PHP: 改良版MySQL拡張サポート(mysqli) - Manual
PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links | my php.net 
search for in the  
<mysql_unbuffered_querymysqli_affected_rows>
view the version of this page
Last updated: Tue, 21 Dec 2004

LXXI. 改良版MySQL拡張サポート(mysqli)

導入

mysqli拡張サポートによってMySQL4.1以上で提供される機能を利用することが できるようになります。MySQLデータベースサーバに関する詳細は をご覧ください。

MySQLに関するドキュメントは にあります。

このドキュメントの一部は、MySQL ABの許可を得てMySQLマニュアルから引用 したものです。

要件

これらの関数を有効にするには、mysqli拡張サポートを 有効にしてPHPをコンパイルする必要があります。

注意: mysqli拡張サポートはMySQL 4.1.2以上で動作するよう設計されています。 それ以前のバージョンについてはMySQL 拡張サポートのドキュメントをご覧ください。

インストール手順

PHPにmysqli拡張サポートを追加するには、 --with-mysqli=mysql_config_path オプションを指定してPHPをコンパイルする必要があります。 mysql_config_pathにはMySQL4.1以上に付属する mysql_configプログラムが存在するパスを 指定してください。同時に、--without-mysqlオプションを 使って標準のMySQL拡張 (これはデフォルトでコンパイルされます)をはずしてください。 mysqli拡張サポートと標準のmysql拡張を共存させる形でインストールしたい 場合には、PHPにバンドルされているlibmysqlライブラリは使用できません。 代わりにMySQL4.1未満でインストールされるクライアントライブラリを 使用してください。これにより何ら衝突させることなく MySQLでインストールされるクライアントライブラリをPHPが強制的に 使用するようにできます。

実行用の設定

これらの関数の動作は、php.iniの設定により変化します。

表 1. MySQLi 設定オプション

名前デフォルト変更の可否
mysqli.max_links"-1"PHP_INI_SYSTEM
mysqli.default_portNULLPHP_INI_ALL
mysqli.default_socketNULLPHP_INI_ALL
mysqli.default_hostNULLPHP_INI_ALL
mysqli.default_userNULLPHP_INI_ALL
mysqli.default_pwNULLPHP_INI_ALL

PHP_INI_* 定数の詳細と定義については、 設定の変更 を参照して下さい。

以下に設定ディレクティブに関す る簡単な説明を示します。

mysqli.max_links integer

持続的接続を含むプロセス毎の MySQL接続の最大数。

mysqli.default_port string

他のポートが指定されない場合、データベースサーバ接続時に 使用されるデフォルトのTCPポート番号。デフォルトが指定されない 場合、ポートは、環境変数MYSQL_TCP_PORT/etc/servicesmysql-tcpエントリ、コンパイル時の MYSQL_PORT定数の順番で取得されます。 Win32では、MYSQL_PORT定数のみが使用されます。

mysqli.default_socket string

他にソケット名が指定されない場合、ローカルな データベースサーバに接続する時のデフォルトのソケット名。

mysqli.default_host string

他のサーバ名が指定されない場合に、データベースサーバへの接続時に 使用されるデフォルトのサーバ名。 safe modeでは適用されません。

mysqli.default_user string

他のユーザ名が指定されない場合に、データベースサーバへの接続時に 使用されるデフォルトのユーザ名。 safe modeでは適用されません。

mysqli.default_password string

他のパスワードが指定されない場合に、データベースサーバへの接続時に 使用されるデフォルトのパスワード。 safe modeでは適用されません。

定義済みのクラス

mysqli

PHPとMySQLデータベースの間の接続を表します。

コンストラクタ

  • mysqli() - 新たにmysqliオブジェクトを作成します

メソッド

  • autocommit() - データベース変更時のオートコミットをオンまたはオフにします

  • change_user() - 指定したデータベース接続のユーザを変更します

  • character_set_name - データベース接続のデフォルトの文字セットを返します

  • close - オープンされている接続をクローズします

  • commit - カレントのトランザクションをコミットします

  • connect - MySQLデータベースサーバーへの新規接続をオープンします

  • debug - デバッグ処理を行います

  • dump_debug_info - デバッグ情報をダンプします

  • get_client_info - クライアントのバージョンを返します

  • get_host_info - 使用されている接続の型を返します

  • get_server_info - MySQLサーバーのバージョンを返します

  • init - mysqliオブジェクトを初期化します

  • info - 直近に実行されたクエリに関する情報を取得します

  • kill - 指定したMySQLスレッドをキルするようサーバーに指示します

  • multi_query - 複数のクエリを実行します

  • more_results - 実行した複数のクエリについて結果がまだ残ってるかどうかを確認します

  • next_result - 実行した複数のクエリから次の結果を読み込みます

  • options - オプションを設定します

  • ping - 指定したサーバー接続にpingを行い、接続がない場合には再接続します

  • prepare - SQLクエリをパースします

  • query - クエリを実行します

  • real_connect - MySQLデータベースサーバーへの接続をオープンします

  • escape_string - 接続に使用する文字セットを考慮してSQL命令が含まれる文字列の中の特殊文字をエスケープします

  • rollback - カレントのトランザクションをロールバックします

  • select_db - デフォルトのデータベースを選択します

  • set_opt - オプションを設定します

  • ssl_set - SSLパラメータを設定します

  • stat - カレントのシステムステータスを取得します

  • store_result - 直近のクエリから結果セットを伝送します

  • use_result - 直近のクエリからバッファリングされていない結果セットを伝送します

  • thread-safe - スレッドセーフかどうかを返します

プロパティ

  • affected_rows - gets the number of affected rows in a previous MySQL operation

  • errno - returns the error code for the most recent function call

  • error - returns the error string for the most recent function call

  • field_count - returns the number of columns for the most recent query

  • host_info - returns a string representing the type of connection used

  • info - retrieves information about the most recently executed query

  • insert-id - returns the auto generated id used in the last query

  • protocol_version - returns the version of the MySQL protocol used

  • sqlstate - returns a string containing the SQLSTATE error code for the last error

  • thread_id - returns the thread ID for the current connection

  • warning-count - returns the number of warnings generated during execution of the previous SQL statement

stmt

パースされた命令を表します。

メソッド

  • bind_param - Binds variables to a prepared statement

  • bind_result - Binds variables to a prepared statement for result storage

  • close - Closes a prepared statement

  • data-seek - Seeks to an arbitrary row in a statement result set

  • execute - Executes a prepared statement

  • fetch - Fetches result from a prepared statement into bound variables

  • get_metadata - Retrieves a resultset from a prepared statement for metadata information

  • send_long_data - Sends data in chunks

  • store_result - Buffers complete resultset from a prepared statement

プロパティ

  • affected_rows - Returns affected rows from last statement execution

  • field_count - Returns number of fields for a given prepared statement

  • errno - Returns errorcode for last statement function

  • errno - Returns errormessage for last statement function

  • param_count - Returns number of parameter for a given prepare statement

  • sqlstate - returns a string containing the SQLSTATE error code for the last statement function

result

データベースへのクエリにより得られた結果セットを表します。

メソッド

  • close - closes resultset

  • data_seek - moves internal result pointer

  • fetch_field - gets column information from a resultset

  • fetch_fields - gets information for all columns from a resulset

  • fetch_field_direct - gets column information for specified column

  • fetch_array - fetches a result row as an associative array, a numeric array, or both.

  • fetch_assoc - fetches a result row as an associative array

  • fetch_object - fetches a result row as an object

  • fetch_row - gets a result row as an enumerated array

  • close - frees result memory

  • field_seek - set result pointer to a specified field offset

プロパティ

定義済みの定数

表 2. MySQLi 定数

定数名説明
MYSQLI_READ_DEFAULT_GROUP (integer)  
MYSQLI_READ_DEFAULT_FILE (integer)  
MYSQLI_OPT_CONNECT_TIMEOUT (integer)  
MYSQLI_OPT_LOCAL_INFILE (integer)  
MYSQLI_INIT_COMMAND (integer)  
MYSQLI_CLIENT_SSL (integer)  
MYSQLI_CLIENT_COMPRESS (integer)  
MYSQLI_CLIENT_INTERACTIVE (integer)  
MYSQLI_CLIENT_IGNORE_SPACE (integer)  
MYSQLI_CLIENT_NO_SCHEMA (integer)  
MYSQLI_CLIENT_MULTI_QUERIES (integer)  
MYSQLI_STORE_RESULT (integer)  
MYSQLI_USE_RESULT (integer)  
MYSQLI_ASSOC (integer)  
MYSQLI_NUM (integer)  
MYSQLI_BOTH (integer)  
MYSQLI_NOT_NULL_FLAG (integer)  
MYSQLI_PRI_KEY_FLAG (integer)  
MYSQLI_UNIQUE_KEY_FLAG (integer)  
MYSQLI_MULTIPLE_KEY_FLAG (integer)  
MYSQLI_BLOB_FLAG (integer)  
MYSQLI_UNSIGNED_FLAG (integer)  
MYSQLI_ZEROFILL_FLAG (integer)  
MYSQLI_AUTO_INCREMENT_FLAG (integer)  
MYSQLI_TIMESTAMP_FLAG (integer)  
MYSQLI_SET_FLAG (integer)  
MYSQLI_NUM_FLAG (integer)  
MYSQLI_PART_KEY_FLAG (integer)  
MYSQLI_GROUP_FLAG (integer)  
MYSQLI_TYPE_DECIMAL (integer)  
MYSQLI_TYPE_TINY (integer)  
MYSQLI_TYPE_SHORT (integer)  
MYSQLI_TYPE_LONG (integer)  
MYSQLI_TYPE_FLOAD (integer)  
MYSQLI_TYPE_DOUBLE (integer)  
MYSQLI_TYPE_NULL (integer)  
MYSQLI_TYPE_TIMESTAMP (integer)  
MYSQLI_TYPE_LONGLONG (integer)  
MYSQLI_TYPE_INT24 (integer)  
MYSQLI_TYPE_DATE (integer)  
MYSQLI_TYPE_TIME (integer)  
MYSQLI_TYPE_DATETIME (integer)  
MYSQLI_TYPE_YEAR (integer)  
MYSQLI_TYPE_NEWDATE (integer)  
MYSQLI_TYPE_ENUM (integer)  
MYSQLI_TYPE_SET (integer)  
MYSQLI_TYPE_TINY_BLOB (integer)  
MYSQLI_TYPE_MEDIUM_BLOB (integer)  
MYSQLI_TYPE_LONG_BLOB (integer)  
MYSQLI_TYPE_BLOB (integer)  
MYSQLI_TYPE_VAR_STRING (integer)  
MYSQLI_TYPE_STRING (integer)  
MYSQLI_TYPE_CHAR (integer)  
MYSQLI_TYPE_INTERVAL (integer)  
MYSQLI_TYPE_GEOMETRY (integer)  
MYSQLI_BIND_STRING (integer)  
MYSQLI_BIND_INT (integer)  
MYSQLI_BIND_DOUBLE (integer)  
MYSQLI_BIND_SEND_DATA (integer)  
MYSQLI_RPL_MASTER (integer)  
MYSQLI_RPL_SLAVE (integer)  
MYSQLI_RPL_ADMIN (integer)  
MYSQLI_NEED_DATA (integer)  
MYSQLI_NO_DATA (integer)  
MYSQLI_PR_REPORT_STDERR (integer)  
MYSQLI_PR_REPORT_PORT (integer)  
MYSQLI_PR_REPORT_FILE (integer)  
目次
mysqli_affected_rows -- 直近のクエリーで変更された行の数を得る
mysqli_autocommit -- データベース更新の自動コミットをオンまたはオフにする
mysqli_bind_param -- 準備されたステートメントに値を割り当てる
mysqli_bind_result -- Alias for mysqli_stmt_bind_result()
mysqli_change_user -- 指定されたデータベース接続のユーザー名を変更する
mysqli_character_set_name -- データベース接続のデフォルトの文字コードセットを返す
mysqli_client_encoding -- Alias of mysqli_character_set_name()
mysqli_close -- データベース接続を閉じる
mysqli_commit -- 現在ののトランザクションをコミットする
mysqli_connect_errno -- Returns the error code from last connect call
mysqli_connect_error -- Returns a string description of the last connect error
mysqli_connect -- 新規にMySQLサーバへの接続をオープンする
mysqli_data_seek -- Adjusts the result pointer to an arbitary row in the result
mysqli_debug -- Performs debugging operations
mysqli_disable_reads_from_master -- Disable reads from master
mysqli_disable_rpl_parse -- Disable RPL parse
mysqli_dump_debug_info -- Dump debugging information into the log
mysqli_embedded_connect -- Open a connection to an embedded mysql server
mysqli_enable_reads_from_master -- Enable reads from master
mysqli_enable_rpl_parse -- Enable RPL parse
mysqli_errno -- Returns the error code for the most recent function call
mysqli_error -- Returns a string description of the last error
mysqli_escape_string -- Alias of mysqli_real_escape_string()
mysqli_execute -- Alias for mysqli_stmt_execute()
mysqli_fetch_array -- Fetch a result row as an associative, a numeric array, or both
mysqli_fetch_assoc -- Fetch a result row as an associative array
mysqli_fetch_field_direct --  Fetch meta-data for a single field
mysqli_fetch_field -- Returns the next field in the result set
mysqli_fetch_fields -- Returns an array of objects representing the fields in a result set
mysqli_fetch_lengths -- Returns the lengths of the columns of the current row in the result set
mysqli_fetch_object -- Returns the current row of a result set as an object
mysqli_fetch_row -- Get a result row as an enumerated array
mysqli_fetch -- Alias for mysqli_stmt_fetch()
mysqli_field_count -- Returns the number of columns for the most recent query
mysqli_field_seek --  Set result pointer to a specified field offset
mysqli_field_tell --  Get current field offset of a result pointer
mysqli_free_result -- Frees the memory associated with a result
mysqli_get_client_info -- Returns the MySQL client version as a string
mysqli_get_client_version -- Get MySQL client info
mysqli_get_host_info -- Returns a string representing the type of connection used
mysqli_get_metadata -- Alias for mysqli_stmt_result_metadata()
mysqli_get_proto_info -- Returns the version of the MySQL protocol used
mysqli_get_server_info -- Returns the version of the MySQL server
mysqli_get_server_version -- Returns the version of the MySQL server as an integer
mysqli_info -- Retrieves information about the most recently executed query
mysqli_init --  Initializes MySQLi and returns an object for use with mysqli_real_connect
mysqli_insert_id -- Returns the auto generated id used in the last query
mysqli_kill -- Asks the server to kill a MySQL thread
mysqli_master_query -- Enforce execution of a query on the master in a master/slave setup
mysqli_more_results -- Check if there any more query results from a multi query
mysqli_multi_query -- Performs a query on the database
mysqli_next_result -- Prepare next result from multi_query
mysqli_num_fields --  Get the number of fields in a result
mysqli_num_rows --  Gets the number of rows in a result
mysqli_options -- Set options
mysqli_param_count -- Alias for mysqli_stmt_param_count()
mysqli_ping --  Pings a server connection, or tries to reconnect if the connection has gone down
mysqli_prepare --  Prepare a SQL statement for execution
mysqli_query -- Performs a query on the database
mysqli_real_connect -- Opens a connection to a mysql server
mysqli_real_escape_string --  Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection
mysqli_real_query -- Execute an SQL query
mysqli_report -- Enables or disables internal report functions
mysqli_rollback -- Rolls back current transaction
mysqli_rpl_parse_enabled -- Check if RPL parse is enabled
mysqli_rpl_probe -- RPL probe
mysqli_rpl_query_type -- Returns RPL query type
mysqli_select_db -- Selects the default database for database queries
mysqli_send_long_data -- Alias for mysqli_stmt_send_long_data()
mysqli_send_query -- Send the query and return
mysqli_server_end -- Shut down the embedded server
mysqli_server_init -- Initialize embedded server
mysqli_set_opt -- Alias of mysqli_options()
mysqli_sqlstate -- Returns the SQLSTATE error from previous MySQL operation
mysqli_ssl_set -- Used for establishing secure connections using SSL
mysqli_stat -- Gets the current system status
mysqli_stmt_affected_rows -- Returns the total number of rows changed, deleted, or inserted by the last executed statement
mysqli_stmt_bind_param -- Binds variables to a prepared statement as parameters
mysqli_stmt_bind_result -- Binds variables to a prepared statement for result storage
mysqli_stmt_close -- Closes a prepared statement
mysqli_stmt_data_seek -- Seeks to an arbitray row in statement result set
mysqli_stmt_errno -- Returns the error code for the most recent statement call
mysqli_stmt_error -- Returns a string description for last statement error
mysqli_stmt_execute -- Executes a prepared Query
mysqli_stmt_fetch --  Fetch results from a prepared statement into the bound variables
mysqli_stmt_free_result -- Frees stored result memory for the given statement handle
mysqli_stmt_init --  Initializes a statement and returns an object for use with mysqli_stmt_prepare
mysqli_stmt_num_rows -- Return the number of rows in statements result set
mysqli_stmt_param_count -- Returns the number of parameter for the given statement
mysqli_stmt_prepare --  Prepare a SQL statement for execution
mysqli_stmt_reset -- Resets a prepared statement
mysqli_stmt_result_metadata -- Returns result set metadata from a prepared statement
mysqli_stmt_send_long_data -- Send data in blocks
mysqli_stmt_sqlstate -- Returns SQLSTATE error from previous statement operation
mysqli_stmt_store_result -- Transfers a result set from a prepared statement
mysqli_store_result -- Transfers a result set from the last query
mysqli_thread_id -- Returns the thread ID for the current connection
mysqli_thread_safe -- Returns whether thread safety is given or not
mysqli_use_result -- Initiate a result set retrieval
mysqli_warning_count -- Returns the number of warnings from the last query for the given link


add a note add a note User Contributed Notes
改良版MySQL拡張サポート(mysqli)
Andrei Nazarenko
22-Feb-2005 07:21
If you are having trouble compiling PHP5 with MySQLi support on Linux and getting a message:
"configure: error: wrong mysql library version or lib not found"
and the config.log shows an error about -lnss_files being not found, here is the solution:

edit your mysql_config file and *REMOVE* all  "-lnss_files" AND "-lnss_dns" entries from it.
After that PHP should not complain anymore.
neil
10-Feb-2005 10:15
I have spent far too much time finding this answer:

Since PHP5 many many people are having installation problems.  I found many apps were broken when I upgraded to version 5.  I tried to install mysql and mysqli and had problems.

Here's the solution:

After doing:

 ./configure --with-mysql=/path/to/mysql_config --with-mysqli=/path/to/mysql_config

do this:

"
   if you want to use both the old mysql and the new mysqli interface, load the Makefile into your editor and search for the line beginning with EXTRA_LIBS; it includes -lmysqlclient twice; remove the second instance
"

then you can:

make
make install

......
Please note:  the mysql-dev must be installed or you won't have a mysql_config anywhere.  I installed the mysql-dev rpm

Further note:  the information about the Makefile's duplicate instances of "-libmysqlclient" came from Michael Kofler.  Thanks should be directed to him.  He gives more details at the following link:

K dot Londenberg at librics dot de
10-Feb-2005 05:35
Second part of the mysqli wrapper code since it didn't all get into one note

------ exception.php -------------

<?php

class FatalException extends Exception {};
class
ErrorException extends Exception {};
class
WarningException extends Exception {};

function
exceptionErrorHandler($errno, $errstr, $errfile, $errline)  {
  switch (
$errno) {
  case
E_USER_ERROR:
  
throw new FatalException($errstr, $errno);
   break;
  case
E_USER_WARNING:
  case
E_WARNING:
  
throw new WarningException($errstr, $errno);
   break;
  case
E_USER_NOTICE:
  
//throw new WarningException($errstr, $errno);
  
break;
  default:
     echo
" - Unknown error - <b>$errstr</b>($errno) <br>";
   break;
  }
 
//return true;
}

$old_error_handler = null;

function
install_exception_errorhandler() {
   global
$old_error_handler;
  
$old_error_handler = set_error_handler(exceptionErrorHandler);
}

function
uninstall_exception_errorhandler() {
   global
$old_error_handler;
  
set_error_handler($old_error_handler);
  
$old_error_handler = null;
}

// returns formatted info-dump of an exception
function exception_dump(&$e) {
  
$res = "";
  
$res .= "<br><h2>".get_class($e)."</h2>\n";
  
$res .= "<h3>{$e->getMessage()} ({$e->getCode()})</h3>\n\n";
  
$res .= "file: {$e->getFile()}<br/>\n";
  
$res .= "line: {$e->getLine()}<br/>\n";
  
$res .= "<PRE>";
  
$res .= $e->getTraceAsString();
  
$res .= "</PRE><br>";
   return
$res;
}

?>
-------------------------------------------

Example-Code:

------ example.php ------------------------
<?php
require_once('safe_mysqli.php');
try {
  
$mysql = new safe_mysqli('locashost', 'user', 'pass', 'test');
  
$stmt = $mysql->prepare("SELECT city, city_accented, population, latitude, longitude from world_cities where city like ? order by population desc limit 5");
  
$stmt->bind_param('s', $a);
  
$stmt->bind_result($city, $city_accented, $population, $latitude, $longitude);
   foreach (
$anfangsbuchstaben as $a) {
      
$stmt->execute();
       while (
$stmt->fetch()) {
           echo
"<b>$city_accented</b>: pop $population - Lat. $latitude Long. $longitude<br>";
       }
      
$stmt->free_result();
   }
}
catch (SQLException $e) {
   die(
"SQL Error : ".$e->getSQLError()." in <hr><PRE>".$e->getSQL()."</PRE><hr>");
}
catch (DBException $e) {
   die(
"Database Error: ". $e->GetMessage());
}
catch (Exception $e) {
   die(
exception_dump($e));
}
?>
-----------------------------------------

Hope this helps ...
K dot Londenberg at librics dot de
10-Feb-2005 05:34
I wrote a wrapper class for mysqli which adds exception handling to the code. It's based on the second tutorial at zend.com

It partially relies on another small library which enables translation from php-warnings to exceptions, so I'm going to include this code as well.

-------safe_mysqli.php------------
<?php
//define('SQL_DEBUG', 1); // uncomment to always dump sql statement in Exception message (for debugging purposes only)
require_once('exceptions.php');
install_exception_errorhandler(); // Translates PHP Warnings and User-Errors into corresponding Exceptions

class DBException extends Exception {}; // Base class for Database Exceptions

class DBConnectException extends DBException {} // Thrown when a Database connection fails

// Thrown when problems with the execution or preparation of an SQL Query occurs.
class SQLException extends DBException {
    
private $sql;
    
private $sqlerrmsg;
    
     function
__construct($msg, $code, $sql) {
          
/* Pass all arguments passed to the constructor on to the parent's constructor */
          
$this->sqlerrmsg = $msg;
           if (
defined('SQL_DEBUG')) {
              
$msg .= " in '$sql'";
           }
          
parent::__construct($msg, $code);
          
$this->sql = $sql;
       }
    
     function
getSQL() {
           return
$this->sql;
     }

     function
getSQLError() {
           return
$this->sqlerrmsg;
     }
    
}

// Helper function for constructor
function add_single_quotes($arg)
{
  return
"'" . addcslashes($arg, "'\\") . "'";
}

// Written by Kai Londenberg K.Londenberg (at) librics (dot) de
// based on an example at zend.com

// mysqli wrapper class with exception support
class safe_mysqli extends mysqli {

         function
__construct() {
            
/* Pass all arguments passed to the constructor on to the parent's constructor */
            
$args = func_get_args();
            
try {
                 eval(
"parent::__construct(" . join(',', array_map('add_single_quotes', $args)) . ");");
             }
catch (WarningException $we) {
                 if(
mysqli_connect_error()){
                    
throw new DBConnectException(mysqli_connect_error(), mysqli_connect_errno());
                  
/* Throw an error if the connection fails */
                
}
             }

         }
      
         function
query($query)  {
          
$result = parent::query($query);
           if(
mysqli_error($this)){
            
throw new SQLException(mysqli_error($this), mysqli_errno($this), $query);
           }
           return
$result;
         }

         function
prepare($query)  {
          
$result = parent::prepare($query);
           if(
mysqli_error($this)){
            
throw new SQLException(mysqli_error($this), mysqli_errno($this), $query);
           }
           return
$result;
         }

}

?>
php at arwin dot net
02-Feb-2005 11:32
For those having trouble compiling with both --with-mysql AND --with-mysqli, I found a solution at this URL:



rjanson at msn dot com writes:

OK, finally an answer!

I checked Makefile and found the following line:

EXTRA_LIBS = -lcrypt -lcrypt -lmysqlclient -lpng -lz -lz -lresolv -lm
-ldl -lnsl -lxml2 -
lz -lm -lxml2 -lz -lm -lmysqlclient -lcrypt -lnsl -lm -lz -lnss_files
-lnss_dns -lresolv -lnss_files
 -lnss_dns -lresolv -lxml2 -lz -lm -lcrypt -lxml2 -lz -lm -lcrypt

By removing one of the -lmysqlclient entries on this line I was able to
successfully make and make install with both mysql and mysqli. As
confirmed by phpInfo().

I'm not sure why the other libs have multiple entries and don't cause
make to crash.
roberto at spadim dot com dot br
07-Dec-2004 03:34
Mysqli is slower them mysql extension if you not use pre compiled statments!
Yair Lapin
10-Nov-2004 03:28
I successed to install php support for a mysql 4.1.7 database after several attempts because the instructions are not clear.
I have a server with linux SuSe 9 enterprise with apache 1.3.31. I installed mysql from rpm files, i installed php 4.3.9 as dynamic library. this version database needs its own client library else the mysql functions in php will not work.
configuration must be as following:

./configure --with-msqli=/usr/bin/mysql_config --with-mysql=/usr  --with-apxs=/usr/local/apache/bin/apxs

 Must be installed in your machine the correct mysql librery:

MySQL-devel-4.1.7-0
MySQL-shared-4.1.7-0
David Woakes
29-Sep-2004 05:41
I installed MySQL 4.1.4 in Fedora Core 2 using rpms from MySQL:

MySQL-client-4.1.4-0
MySQL-server-4.1.4-0
MySQL-devel-4.1.4-0
MySQL-shared-4.1.4-0

I configured with --with-mysqli=/usr/bin/mysql_config and --with-mysql=/usr and was getting duplicate symbol definitions at the end of make.

I worked out that the linking stage was including the shared libs (from MySQL-shared) and the static libs (from MySQL-devel).  Uninstalling the devel package doesn't help because you need the include files.  The solution I came up with was to delete the static lib files.  Not perfect, but it got there.
nathansquires at pacbell dot net
13-Sep-2004 05:44
If you want to build php with both the Mysql and mysqli extensions, make sure your mysql distribution comes with shared libraries or build mysql yourself with shared libraries. With only static mysql libraries the compile process will fail.
severin dot kacianka at aon dot at
12-Aug-2004 10:55
I tryed Marco Kaiser's way of getting both mysql_* and mysqli_*, but it failed for me. However I could get it working this way:
First of all I installed the MySQL 4.1.3 binary disribution acourding to the manual. Then I simply passed these ./configure arguments:

--with-mysql=/path/to/mysql4.1.3
--with-mysqli=/path/to/mysql4.1.3/bin/mysql_config

This enabled both, the mysql_* and mysqli_* functions.

Severin Kacianka
ajp at aripollak dot com
19-Jul-2004 11:50
From README.PHP4-TO-PHP5-THIN-CHANGES:

Be careful when porting from ext/mysql to ext/mysqli. The following
   functions return NULL when no more data is available in the result set
   (ext/mysql's functions return FALSE).

   - mysqli_fetch_row()
   - mysqli_fetch_array()
   - mysqli_fetch_assoc()
philip
17-Jun-2004 10:51
A couple tutorials on the subject of mysqli:
*
*
phoeniks[at]nm[dot]ru
08-Apr-2004 10:21
Here is a little sample to do fast hierarchical queries using new prepared statements

<?php
// Root - lowest start element
// Top  - most top element
// stack - array for storing info

function tree_rise($root, &$stack, $top = 0) {
 
$mysqli = mysqli_connect('localhost', 'root');
 
$top  = (int)$top;
 
$stmt = mysqli_prepare($mysqli, "SELECT id, pid, title FROM news.strg WHERE id = ? LIMIT 1");
 
mysqli_stmt_bind_param($stmt, "i", $root);
 
mysqli_stmt_execute($stmt);
 
mysqli_stmt_store_result($stmt);
 
mysqli_bind_result($stmt, $id, $root, $title);

  while (
mysqli_fetch($stmt)) {
  
$stack[$id] = $title;
   if (
$root != $top && !is_null($root)) {
    
mysqli_stmt_execute($stmt);
    
mysqli_stmt_store_result($stmt);
   }
  }
  return
count($stack);
}
?>
Marco Kaiser
03-Nov-2003 07:51
I installed
mysql 4.0.xx and mysql 4.1.xx (mysql & mysqli) with
--with-mysql=/path/to/mysql4/
--with-mysql=/path/to/mysql4.1/bin/mysql_config

keep in mind don't use --with-embedded-mysqli !!

Its doesn't work if you just give mysqli the path where mysql_config is.

<mysql_unbuffered_querymysqli_affected_rows>
 Last updated: Tue, 21 Dec 2004
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: /
Last updated: Mon Mar 14 08:13:06 2005 Local time zone must be set--see zic manual page