mysqli 확장 라이브러리는 mysql 확장 라이브러리를 기반으로 안정성과 효율성을 향상시킨 버전입니다. 하나는 프로세스 지향입니다. mysqli와 다른 하나는 객체 지향 mysqli입니다. 동작 방법은 일반적으로 mysql 확장 라이브러리와 동일하다. 이번에는 먼저 mysql 동작을 위한 툴 클래스와 호출 클래스를 추출한다.
추천 mysql 동영상 튜토리얼: "mysql 튜토리얼"
1. mysqli 확장 라이브러리 운영 데이터베이스 도구 클래스
conn=new mysqli($this->host, $this->username, $this->password,$this->dbname) or die($this->conn->connect_error); } //查询 public function query($sql){ $all= $this->conn->query($sql); return $all; } //插入,修改,删除 public function otherOperate($sql){ if($this->conn->query($sql)){ if($this->conn->affected_rows>0){ return "OK"; }else{ return "ERROOR"; } } } public function close(){ $this->conn->close(); } } ?>
2. 도구 클래스 호출을 위한 특정 코드
query($sql); while($row=$result->fetch_assoc()){ echo "$row[stuName]".""; } $result->free(); $util->close();*/ $sql="update m_student set stuName='杨幂' where id=3"; $util=new DBUtil(); $result=$util->otherOperate($sql); echo $result; $util->close(); ?>