欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

簡單的php數(shù)據(jù)庫操作類代碼(增,刪,改,查)

 更新時間:2013年04月08日 09:23:29   作者:  
這幾天準(zhǔn)備重新學(xué)習(xí),梳理一下知識體系,同時按照功能模塊劃分做一些東西。所以。mysql的操作成為第一個要點(diǎn)。我寫了一個簡單的mysql操作類,實現(xiàn)數(shù)據(jù)的簡單的增刪改查功能。

數(shù)據(jù)庫操縱基本流程為:

  1、連接數(shù)據(jù)庫服務(wù)器

  2、選擇數(shù)據(jù)庫

  3、執(zhí)行SQL語句

  4、處理結(jié)果集

  5、打印操作信息

  其中用到的相關(guān)函數(shù)有

•resource mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )  連接數(shù)據(jù)庫服務(wù)器
•resource mysql_pconnect ( [string server [, string username [, string password [, int client_flags]]]] )  連接數(shù)據(jù)庫服務(wù)器,長連接
•int mysql_affected_rows ( [resource link_identifier] )取得最近一次與 link_identifier 關(guān)聯(lián)的 INSERT,UPDATE 或 DELETE 查詢所影響的記錄行數(shù)。
•bool mysql_close ( [resource link_identifier] )如果成功則返回 TRUE,失敗則返回 FALSE。
•int mysql_errno ( [resource link_identifier] )返回上一個 MySQL 函數(shù)的錯誤號碼,如果沒有出錯則返回 0(零)。
•string mysql_error ( [resource link_identifier] )返回上一個 MySQL 函數(shù)的錯誤文本,如果沒有出錯則返回 ''(空字符串)。如果沒有指定連接資源號,則使用上一個成功打開的連接從 MySQL 服務(wù)器提取錯誤信息。
•array mysql_fetch_array ( resource result [, int result_type] )返回根據(jù)從結(jié)果集取得的行生成的數(shù)組,如果沒有更多行則返回 FALSE。
•bool mysql_free_result ( resource result )釋放所有與結(jié)果標(biāo)識符 result 所關(guān)聯(lián)的內(nèi)存。
•int mysql_num_fields ( resource result )返回結(jié)果集中字段的數(shù)目。
•int mysql_num_rows ( resource result )返回結(jié)果集中行的數(shù)目。此命令僅對 SELECT 語句有效。要取得被 INSERT,UPDATE 或者 DELETE 查詢所影響到的行的數(shù)目,用 mysql_affected_rows()。
•resource mysql_query ( string query [, resource link_identifier] ) 向與指定的連接標(biāo)識符關(guān)聯(lián)的服務(wù)器中的當(dāng)前活動數(shù)據(jù)庫發(fā)送一條查詢。如果沒有指定 link_identifier,則使用上一個打開的連接。如果沒有打開的連接,本函數(shù)會嘗試無參數(shù)調(diào)用 mysql_connect() 函數(shù)來建立一個連接并使用之。查詢結(jié)果會被緩存
代碼如下:


復(fù)制代碼 代碼如下:

class mysql {

     private $db_host;       //數(shù)據(jù)庫主機(jī)
     private $db_user;       //數(shù)據(jù)庫登陸名
     private $db_pwd;        //數(shù)據(jù)庫登陸密碼
     private $db_name;       //數(shù)據(jù)庫名
     private $db_charset;    //數(shù)據(jù)庫字符編碼
     private $db_pconn;      //長連接標(biāo)識位
     private $debug;         //調(diào)試開啟
     private $conn;          //數(shù)據(jù)庫連接標(biāo)識
     private $msg = "";      //數(shù)據(jù)庫操縱信息

 //    private $sql = "";      //待執(zhí)行的SQL語句

     public function __construct($db_host, $db_user, $db_pwd, $db_name, $db_chaeset = 'utf8', $db_pconn = false, $debug = false) {
         $this->db_host = $db_host;
         $this->db_user = $db_user;
         $this->db_pwd = $db_pwd;
         $this->db_name = $db_name;
         $this->db_charset = $db_chaeset;
         $this->db_pconn = $db_pconn;
         $this->result = '';
         $this->debug = $debug;
         $this->initConnect();
     }

     public function initConnect() {
         if ($this->db_pconn) {
             $this->conn = @mysql_pconnect($this->db_host, $this->db_user, $this->db_pwd);
         } else {
             $this->conn = @mysql_connect($this->db_host, $this->db_user, $this->db_pwd);
         }
         if ($this->conn) {
             $this->query("SET NAMES " . $this->db_charset);
         } else {
             $this->msg = "數(shù)據(jù)庫連接出錯,錯誤編號:" . mysql_errno() . "錯誤原因:" . mysql_error();
         }
         $this->selectDb($this->db_name);
     }

     public function selectDb($dbname) {
         if ($dbname == "") {
             $this->db_name = $dbname;
         }
         if (!mysql_select_db($this->db_name, $this->conn)) {
             $this->msg = "數(shù)據(jù)庫不可用";
         }
     }

     public function query($sql, $debug = false) {
         if (!$debug) {
             $this->result = @mysql_query($sql, $this->conn);
         } else {

         }
         if ($this->result == false) {
             $this->msg = "sql執(zhí)行出錯,錯誤編號:" . mysql_errno() . "錯誤原因:" . mysql_error();
         }
 //        var_dump($this->result);
     }

     public function select($tableName, $columnName = "*", $where = "") {
         $sql = "SELECT " . $columnName . " FROM " . $tableName;
         $sql .= $where ? " WHERE " . $where : null;
         $this->query($sql);
     }

     public function findAll($tableName) {
         $sql = "SELECT * FROM $tableName";
         $this->query($sql);
     }

     public function insert($tableName, $column = array()) {
         $columnName = "";
         $columnValue = "";
         foreach ($column as $key => $value) {
             $columnName .= $key . ",";
             $columnValue .= "'" . $value . "',";
         }
         $columnName = substr($columnName, 0, strlen($columnName) - 1);
         $columnValue = substr($columnValue, 0, strlen($columnValue) - 1);
         $sql = "INSERT INTO $tableName($columnName) VALUES($columnValue)";
         $this->query($sql);
         if($this->result){
             $this->msg = "數(shù)據(jù)插入成功。新插入的id為:" . mysql_insert_id($this->conn);
         }
     }

     public function update($tableName, $column = array(), $where = "") {
         $updateValue = "";
         foreach ($column as $key => $value) {
             $updateValue .= $key . "='" . $value . "',";
         }
         $updateValue = substr($updateValue, 0, strlen($updateValue) - 1);
         $sql = "UPDATE $tableName SET $updateValue";
         $sql .= $where ? " WHERE $where" : null;
         $this->query($sql);
         if($this->result){
             $this->msg = "數(shù)據(jù)更新成功。受影響行數(shù):" . mysql_affected_rows($this->conn);
         }
     }

     public function delete($tableName, $where = ""){
         $sql = "DELETE FROM $tableName";
         $sql .= $where ? " WHERE $where" : null;
         $this->query($sql);
         if($this->result){
             $this->msg = "數(shù)據(jù)刪除成功。受影響行數(shù):" . mysql_affected_rows($this->conn);
         }
     }

     public function fetchArray($result_type = MYSQL_BOTH){
         $resultArray = array();
         $i = 0;
         while($result = mysql_fetch_array($this->result, $result_type)){
             $resultArray[$i] = $result;
             $i++;
         }
         return $resultArray;
     }

 //    public function fetchObject(){
 //        return mysql_fetch_object($this->result);
 //    }

     public function printMessage(){
         return $this->msg;
     }

     public function freeResult(){
         @mysql_free_result($this->result);
     }

     public function __destruct() {
         if(!empty($this->result)){
             $this->freeResult();
         }
         mysql_close($this->conn);
     }
 }

調(diào)用代碼如下

復(fù)制代碼 代碼如下:

require_once 'mysql_V1.class.php';
 require_once 'commonFun.php';
 $db = new mysql('localhost', 'root', '', "test");

 //select    查
 $db->select("user", "*", "username = 'system'");
 $result = $db->fetchArray(MYSQL_ASSOC);
 print_r($result);
 dump($db->printMessage());

 //insert    增
 //$userInfo = array('username'=>'system', 'password' => md5("system"));
 //$db->insert("user", $userInfo);
 //dump($db->printMessage());

 //update    改
 //$userInfo = array('password' => md5("123456"));
 //$db->update("user", $userInfo, "id = 2");
 //dump($db->printMessage());

 //delete    刪
 //$db->delete("user", "id = 1");
 //dump($db->printMessage());

 //findAll   查詢?nèi)?BR> $db->findAll("user");
 $result = $db->fetchArray();
 dump($result);

ps,個人比較喜歡tp的dump函數(shù),所以在commonFun.php文件中拷貝了友好打印函數(shù)。使用時將其改為print_r()即可。

相關(guān)文章

  • PHP設(shè)計模式之?dāng)?shù)據(jù)訪問對象模式(DAO)原理與用法實例分析

    PHP設(shè)計模式之?dāng)?shù)據(jù)訪問對象模式(DAO)原理與用法實例分析

    這篇文章主要介紹了PHP設(shè)計模式之?dāng)?shù)據(jù)訪問對象模式(DAO)原理與用法,結(jié)合實例形式分析了PHP數(shù)據(jù)訪問對象模式的概念、原理、用法及操作注意事項,需要的朋友可以參考下
    2019-12-12
  • CodeIgniter使用smtp服務(wù)發(fā)送html郵件的方法

    CodeIgniter使用smtp服務(wù)發(fā)送html郵件的方法

    這篇文章主要介紹了CodeIgniter使用smtp服務(wù)發(fā)送html郵件的方法,涉及CodeIgniter中email類的使用技巧,需要的朋友可以參考下
    2015-06-06
  • Codeigniter框架實現(xiàn)獲取分頁數(shù)據(jù)和總條數(shù)的方法

    Codeigniter框架實現(xiàn)獲取分頁數(shù)據(jù)和總條數(shù)的方法

    這篇文章主要介紹了Codeigniter框架實現(xiàn)獲取分頁數(shù)據(jù)和總條數(shù)的方法,實現(xiàn)了對獲取當(dāng)前頁的數(shù)據(jù)和總條數(shù)方法的封裝,是非常實用的技巧,需要的朋友可以參考下
    2014-12-12
  • windows系統(tǒng)php環(huán)境安裝swoole具體步驟

    windows系統(tǒng)php環(huán)境安裝swoole具體步驟

    這篇文章主要介紹了windows系統(tǒng)php環(huán)境安裝swoole具體步驟,swoole目前是比較熱門的一個擴(kuò)展插件,有需要的同學(xué)可以學(xué)習(xí)下
    2021-03-03
  • 詳解Laravel5.6通過路由進(jìn)行API版本控制的簡單方法

    詳解Laravel5.6通過路由進(jìn)行API版本控制的簡單方法

    這篇文章主要介紹了詳解Laravel5.6通過路由進(jìn)行API版本控制的簡單方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-01-01
  • 淺談PHP正則中的捕獲組與非捕獲組

    淺談PHP正則中的捕獲組與非捕獲組

    下面小編就為大家?guī)硪黄獪\談PHP正則中的捕獲組與非捕獲組。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-07-07
  • thinkphp5實現(xiàn)無限級分類

    thinkphp5實現(xiàn)無限級分類

    這篇文章主要為大家詳細(xì)介紹了thinkphp5實現(xiàn)無限級分類,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-02-02
  • 最新評論