免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1906 | 回复: 1
打印 上一主题 下一主题

用PHP CLASS 写的mysql数据库接口! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-12-30 17:06 |只看该作者 |倒序浏览
<?php
error_reporting(7);
// db class for mysql
// this class is used in all scripts
// do NOT fiddle unless you know what you are doing

class Mysql_DB {
  var $database = "";

  var $link_id  = 0;
  var $query_id = 0;
  var $record   = array();

  var $errdesc    = "";
  var $errno   = 0;
  var $reporterror = 1;

  var $server   = "";
  var $user     = "";
  var $password = "";

  function Mysql_DB($servername,$dbusername,$dbpassword,$dbname){
        $this->;server   = $servername;////数据库服务器
        $this->;user     = $dbusername;////用户名
        $this->;password = $dbpassword;/////密码
        $this->;database = $dbname;////数据库名
        $this->;connect();                   ////连接数据库
  }

  function connect() {                           ////连接数据库方法
    global $usepconnect;
    if ( 0 == $this->;link_id ) {
      if ($this->;password==""
        {
             $this->;link_id=mysql_pconnect($this->;server,$this->;user);
        }
         else
         {
          $this->;link_id=mysql_pconnect($this->;server,$this->;user,$this->;password);
           }
      if (!$this->;link_id) {
        $this->;halt("连接数据库失败";
      }
      if ($this->;database!="" {
        if(!mysql_select_db($this->;database, $this->;link_id)) {
          $this->;halt("不能使用数据库: ".$this->;database);
        }
      }
    }
  }

  function geterrdesc() {
    $this->;error=mysql_error();
    return $this->;error;
  }

  function geterrno() {
    $this->;errno=mysql_errno();
    return $this->;errno;
  }

  function select_db($database="" {///查询 select 语句实现
    // select database
    if ($database!="" {
      $this->;database=$database;
    }

    if(!mysql_select_db($this->;database, $this->;link_id)) {
      $this->;halt("不能使用数据库:".$this->;database);
    }

  }

  function query($query_string) {        ////////处理SQL语句
    global $query_count,$showqueries,$explain,$querytime;
    // do query

    if ($showqueries) {
      echo "查询语句: $query_string\n";

      global $pagestarttime;
      $pageendtime=microtime();
      $starttime=explode(" ",$pagestarttime);
      $endtime=explode(" ",$pageendtime);

      $beforetime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];

      echo "Time before: $beforetime\n";
    }

    $this->;query_id = mysql_query($query_string,$this->;link_id);
    if (!$this->;query_id) {
      $this->;halt("无效的 SQL: ".$query_string);
    }

    $query_count++;

    if ($showqueries) {
      $pageendtime=microtime();
      $starttime=explode(" ",$pagestarttime);
      $endtime=explode(" ",$pageendtime);

      $aftertime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
      $querytime+=$aftertime-$beforetime;

      echo "Time after:  $aftertime\n";

      if ($explain and substr(trim(strtoupper($query_string)),0,6)=="SELECT" {
        $explain_id = mysql_query("EXPLAIN $query_string",$this->;link_id);
        echo "</pre>;\n";
        echo "
        <table width=100% border=1 cellpadding=2 cellspacing=1>;
        <tr>;
          <td>;<b>;table</b>;</td>;
          <td>;<b>;type</b>;</td>;
          <td>;<b>;possible_keys</b>;</td>;
          <td>;<b>;key</b>;</td>;
          <td>;<b>;key_len</b>;</td>;
          <td>;<b>;ref</b>;</td>;
          <td>;<b>;rows</b>;</td>;
          <td>;<b>;Extra</b>;</td>;
        </tr>;\n";
        while($array=mysql_fetch_array($explain_id)) {
          echo "
          <tr>;
            <td>;$array[table]&</td>;
            <td>;$array[type]&</td>;
            <td>;$array[possible_keys]&</td>;
            <td>;$array[key]&</td>;
            <td>;$array[key_len]&</td>;
            <td>;$array[ref]&</td>;
            <td>;$array[rows]&</td>;
            <td>;$array[Extra]&</td>;
          </tr>;\n";
        }
        echo "</table>;\n
;<hr>;\n";
        echo "\n<pre>;";
      } else {
        echo "\n<hr>;\n\n";
      }
    }

    return $this->;query_id;
  }

  function fetch_array($query_id=-1,$query_string="" {///取得信息列表
    // retrieve row
    if ($query_id!=-1) {
      $this->;query_id=$query_id;
    }
    if ( isset($this->;query_id) ) {
      $this->;record = mysql_fetch_array($this->;query_id);
    } else {
      if ( !empty($query_string) ) {
        $this->;halt("Invalid query id (".$this->;query_id." on this query: $query_string";
      } else {
        $this->;halt("Invalid query id ".$this->;query_id." specified";
      }
    }

    return $this->;record;
  }

  function free_result($query_id=-1) { //释放处理(query)
    // retrieve row
    if ($query_id!=-1) {
      $this->;query_id=$query_id;
    }
    //return @mysql_free_result($this->;query_id);
  }

  function query_first($query_string) {////只有一条记录时(唯一识别)
    // does a query and returns first row
    $query_id = $this->;query($query_string);
    $returnarray=$this->;fetch_array($query_id, $query_string);
    $this->;free_result($query_id);
    return $returnarray;
  }

  function data_seek($pos,$query_id=-1) {
    // goes to row $pos
    if ($query_id!=-1) {
      $this->;query_id=$query_id;
    }
    return mysql_data_seek($this->;query_id, $pos);//将指定的结果标识所关联的 MySQL 结果内部的行指针移动到指定的行号
  }

  function num_rows($query_id=-1) {////////取得列表数组
    // returns number of rows in query
    if ($query_id!=-1) {
      $this->;query_id=$query_id;
    }
    return mysql_num_rows($this->;query_id);
  }

  function num_fields($query_id=-1) {////返回结果集中字段的数目
    // returns number of fields in query
    if ($query_id!=-1) {
      $this->;query_id=$query_id;
    }
    return mysql_num_fields($this->;query_id);
  }

  function insert_id() {
    // returns last auto_increment field number assigned

    return mysql_insert_id($this->;link_id);

  }
  function list_fields($tablename)
  {
    // returns fields of table
    if ( ( $this->;database != "" )&&( $this->;link_id != "") )
        {
        return mysql_list_fields($this->;database, $tablename, $this->;link_id);
    }
  }
  function field_name($query_id=-1, $num)
  {
    // returns value of fields
    if ( $query_id != -1 )
        {
      $this->;query_id = $query_id;
    }
    return mysql_field_name($this->;query_id, $num);
  }

  function halt($msg) {
    $this->;errdesc=mysql_error();
    $this->;errno=mysql_errno();
    // prints warning message when there is an error
    global $technicalemail;

    if ($this->;reporterror==1) {
      $message="Database error in $this->;appname: $msg\n";
      $message.="mysql error: $this->;errdesc\n";
      $message.="mysql error number: $this->;errno\n";
      $message.="Date: ".date("l dS of F Y h:i:s A")."\n";
      $message.="Script: ".getenv("REQUEST_URI")."\n";
      $message.="Referer: ".getenv("HTTP_REFERER")."\n";

      @mail ($technicalemail,"$this->;appshortname Database error!",$message);

      echo "\n<!-- $message -->;\n";

      echo "\n<p>;数据库产生一个小的问题.\n";
      echo "请按浏览器 刷新键 重试.</p>;";
      echo "<p>;或向程序员询问.</p>;";
      die("");
    }
  }
       

        //附加函数*list_dbs
        function list_dbs()
        {
                return mysql_list_dbs($this->;link_id);
        }

        //附加函数*list_tables
        function list_tables($dbname)
        {
                if($dbname!="")
                {
                        $result=mysql_list_tables($dbname,$this->;link_id);
                        $this->;select_db($this->;database);
                        return $result;
                }
        }
/*
        //附加函数*list_fields////字段列表
        function list_fields($dbname,$tablename)
        {
                if(($dbname!="")&&($this->;link_id!=""))
                {
                        $result=mysql_list_fields($dbname,$tablename,$this->;link_id);
                        $this->;select_db($this->;database);
                        return $result;
                }
        }
*/
        //附加函数*field_type
        function field_type($query_id=-1, $num)///字段类型
        {
                if($query_id!=-1)
                {
                        $this->;query_id = $query_id;
                }
                return mysql_field_type($this->;query_id, $num);
        }

        //附加函数*field_len
        function field_len($query_id=-1, $num)
        {
                if($query_id!=-1)
                {
                        $this->;query_id = $query_id;
                }
                return mysql_field_len($this->;query_id, $num);
        }
       
        //附加函数*field_flags
        function field_flags($query_id=-1, $num)
        {
                if($query_id!=-1)
                {
                        $this->;query_id = $query_id;
                }
                return mysql_field_flags($this->;query_id, $num);
        }
}
//创建数据库连接实例
$DB_web  = new Mysql_DB($servername,$dbusername,$dbpassword,$dbname);

////操作EXAMPLE///////
///$servername="127.0.0.1";
///$dbusername="root";
///$dbpassword="";
///$dbname="test";
/*----表---------testtable
CREATE TABLE `testtable` (
  `id` int( NOT NULL auto_increment,
  `fd1` varchar(200) NOT NULL default '',
  `fd2` varchar(200) NOT NULL default '',
  `fd3` varchar(200) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
*/
////////查询///////////
$sql="select * from testtable";
$res=$DB_web->;query($sql);
$res=$DB_web->;fetch_array($res);

///////插入/////
$sql="insert into testtable(fd1,fd2,fd3)values('A','B','C')";
$DB_web->;query($sql);


/////修改////////
$sql="update testtable set fd1='$fd1',fd2='$fd2',fd3='$fd3' where id=1";
$DB_web->;query($sql);

///////删除//////////
$sql="delete from  testtable  where id=1";
$DB_web->;query($sql);

?>;

论坛徽章:
0
2 [报告]
发表于 2003-12-30 17:15 |只看该作者

用PHP CLASS 写的mysql数据库接口!

看晕了,多加点注释,特别是类的那部分~~~~~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP