PHP using mysqli Extension Library to implement additions and deletions (object-oriented version)

Source: Internet
Author: User

The Mysqli extension Library is an improved version of the MySQL extension library, which improves stability and efficiency on the basis of the MySQL extension library, and the Mysqli extension Library has two sets of things, one set is the process-oriented mysqli and the other is the object-oriented mysqli. The operation is roughly the same as the MySQL extension library, this time to extract an operation of the MySQL tool class, and the calling class.

1.MYSQLI Extended Library Operations Database Tools class

<?PHP//Database Operations Classes  classdbutil{Private $host= "localhost"; Private $username= "Root"; Private $password= "123456"; Private $dbname= "Student"; Private $conn;  Public functionDbutil () {$this->conn=NewMysqli ($this->host,$this->username,$this->password,$this->dbname) or die($this->conn->connect_error); }  //Enquiry    Public functionQuery$sql){     $all=$this->conn->query ($sql); return $all; }  //Insert, modify, delete    Public functionOtheroperate ($sql){      if($this->conn->query ($sql)){        if($this->conn->affected_rows>0){           return"OK"; }Else{           return"Erroor"; }      }   }    Public functionClose () {$this->conn->Close (); }  }?>

2. The following is the code that invokes the tool class

<?PHPrequire_once"Mysqlutil.php"; /*$sql = "SELECT * from M_student";   $util =new dbutil ();   $result = $util->query ($sql); while ($row = $result->fetch_assoc ()) {echo "$row [Stuname]".   </br> ";   } $result->free (); $util->close ();*/   $sql= "Update m_student set stuname= ' Yang mi ' where id=3"; $util=NewDbutil (); $result=$util->otheroperate ($sql); Echo $result; $util-close ();?>

Reference reading: www.manongjc.com/article/1206.html

PHP using mysqli Extension Library to implement additions and deletions (object-oriented version)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.