简单介绍下PHP5中引入的MySQLI

ZDNet软件频道 时间:2008-07-02 作者: | 中国IT实验室 我要评论()
本文关键词:MySQL 引入 PHP Linux
  mysqli.dll是PHP对mysql新特性的一个扩展支持。在PHP5中可以在php.ini中加载.
 MySQLi.dll是PHPMySQL新特性的一个扩展支持。在PHP5中可以在PHP.ini中加载,如下图:
  
  interface, ingenious, incompatible or incomplete(改扩展仍在开发中,因为MySQL4。1和MySQL5都没有正式推出尚在开发中,新的特性没有完全实现)
  
  MySQLi想实现的目标具体有:
  
  -更简单的维护
  
  -更好的兼容性
  
  -向后兼容
  
  MySQL(指PHP中的模块)发展到现在显得比较凌乱,有必要重新做下整理。同时,有必要跟上MySQL(DBMS)的发展步伐,加入新的特性的支持,以及适应MySQL(DBMS)以后的版本。所以诞生了MySQLi.dll
  
  MySQLi.dll的特性:
  
  -可以和MySQL.dll一样的方式使用
  
  -支持OO接口,简简单单调用
  
  -支持MySQL4。1引入的新特性
  
  -通过MySQLi_init() 等相关函数,可以设置高级连接选项
  
  MySQLi的使用例子:
  
  1.和以前MySQL.dll一样的方法:
  
  <?PHP
  
  /* Connect to a MySQL server */
  
  $link = MySQLi_connect(
  
  'localhost', /* The host to connect to */
  
  'user', /* The user to connect as */
  
  'password', /* The password to use */
  
  'world'); /* The default table to query */
  
  if (!$link) {
  
  printf("Can't connect to MySQL Server. Errorcode: %sn", MySQLi_connect_error());
  
  exit;
  
  }
  
  /* Send a query to the server */
  
  if ($result = MySQLi_query($link, 'SELECT Name, Population FROM City ORDER BY Population DESC LIMIT 5')) {
  
  print("Very large cities are:n");
  
  /* Fetch the results of the query */
  
  while( $row = MySQLi_fetch_assoc($result) ){
  
  printf("%s (%s)n", $row['Name'], $row['Population']);
  
  }
  
  /* Destroy the result set and free the memory used for it */
  
  MySQLi_free_result($result);
  
  }
  
  /* Close the connection */
  
  MySQLi_close($link);
  
  ?>
  
  输出结果:
  
  Very large cities are:
  
  Mumbai (Bombay) (10500000)
  
  Seoul (9981619)
  
  São Paulo (9968485)
  
  Shanghai (9696300)
  
  Jakarta (9604900)
  
  2.使用内置OO接口方式调用:
  
  <?PHP
  
  /* Connect to a MySQL server */
  
  $MySQLi = new MySQLi('localhost', 'user', 'password', 'world');
  
  if (MySQLi_connect_errno()) {
  
  printf("Can't connect to MySQL Server. Errorcode: %sn", MySQLi_connect_error());
  
  exit;
  
  }
  
  /* Send a query to the server */
  
  if ($result = $MySQLi->query('SELECT Name, Population FROM City ORDER BY Population DESC LIMIT 5')) {
  
  print("Very large cities are:n");
  
  /* Fetch the results of the query */
  
  while( $row = $result->fetch_assoc() ){
  
  printf("%s (%s)n", $row['Name'], $row['Population']);
  
  }
  
  /* Destroy the result set and free the memory used for it */
  
  $result->close();
  
  }
  
  /* Close the connection */
  
  $MySQLi->close();
  
  ?>
  
  支持的新特性还有:Bound Parameters,Bound Results等。。。

百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134