程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php---數據庫類封裝

php---數據庫類封裝

編輯:關於PHP編程

為了節省以後的時間,今天封裝了操作sql語句的一個類,在此保存起來,方面以後使用。

這個類的文件名:SqlTool.class.php

主要有dql和dml兩個函數

看下面的源碼“

conn=mysql_connect($this->host,$this->username,$this->password);
        if(!$this->conn)
        {
            die  ("連接失敗".mysql_error($this.conn));
        }
        mysql_select_db($this->db,$this->conn);
        mysql_query("set names utf8");
     }
     
     //完成select
     function execute_dql($sql)
     {
        $result = mysql_query($sql,$this->conn);
        $arrTemp = array();
        $counter = 0;
        while($row = mysql_fetch_assoc($result))
        {
         $arrTemp[$counter] = $row;
          $counter++;
        }
        mysql_free_result($result);
        mysql_close($this->conn);
        
        return json_encode($arrTemp);
     }
     
     //完成dml
     public  function execute_dml($sql)
     {
        $res=mysql_query($sql,$this->conn);
        if(!$res)
        {
            return 0; //執行失敗
        } 
        else
        {
            if(mysql_affected_rows($this->conn)>0)
            { 
                return 1;  //執行成功
            } 
            else
            {
                return 2; //沒有行數收到影響
            }
        }
        
     }
   } 

?>

演示一下使用方法:

execute_dml($sqlStr);
  echo "結果為:".$result1."
"; $sqlStr1 = "select * from student"; $resultStr = $sqlTool->execute_dql($sqlStr1); echo "當前數據:
".$resultStr; ?>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved