php對資料庫增刪改查操作類

來源:互聯網
上載者:User

標籤:

 1 <?php  2      3     /** 4     * 函數名稱:SqlTool.class.php  5     * 函數功能:php對資料庫增刪改查操作類 6     * 函數張真貴 7     * 建立時間:2015-01-05 8     * 修改時間: 9     */10     header("Content-Type:text/html;charset=utf-8");11     class SqlTool{12         private $conn;13         private $host = ‘localhost‘;14         private $root = ‘root‘;15         private $password = ‘‘;16         private $dbname = test;17 18         function __construct(){19             # code...20             $this->conn = mysql_connect($this->host,$this->root,$this->password) or die(‘串連資料庫失敗‘.mysql_error());21             mysql_select_db($this->dbname);22             mysql_set_charset(‘utf8‘);23         }24 25         /***************************dql操作***********************************/26         public function execute_dql($sql){27             $res = mysql_query($sql,$this->conn) or die(mysql_error());28             return $res;29         }30 31         /****************************dml操作***********************************/32         public function execute_dml($sql){33             $res = mysql_query($sql,$this->conn) or die(mysql_error());34             if (!$res) {35                 # code...36                 return 0;37             }elseif (mysql_affected_rows($this->conn) > 0) {38                 # code...39                 return 1;40             }else{41                 # code...42                 return 2;43             }44         }45     }46 47 /*******************48     $sql = "insert into user1(id,name) values(‘7‘,‘陸遜‘)";49     //建立對象50     $sqlTool = new SqlTool;51     $result = $sqlTool-> execute_dml($sql);52     if ($result == 0) {53         # code...54         echo "失敗";55     }elseif ($result == 1) {56         # code...57         echo "成功";58     }elseif ($result == 2) {59         # code...60         echo "沒有影響行數";61     }62 *******************/    63  ?>

 

php對資料庫增刪改查操作類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.