- クラスデータベース
- {
- private $hostname;
- private $user;
- private $pass;
- private $dbname;
- private $linkflag;
- private $charset;
- function __construct()
- {
- $this->hostname="localhost";
- $this->user="root";
- $this->pass="111";
- $this->dbname="";
- $ this->charset="utf8"; //gb2312 GBK utf8
- $this->linkflag=mysql_connect($this->hostname,$this->user,$this->pass);
- mysql_select_db($this->dbname,$this- >linkflag) または die($this->error());
- mysql_query("set names ".$this->charset);
- }
-
- function __set($property_name,$value)
- {
- return $this->$property_name=$value;
- }
-
- function __get($property_name)
- {
- if(isset($this->$property_name))
- {
- return $this->gt;$property_name;
- }
- else return null;
- }
-
- function __call($function_name, $args)
- {
- echo "
你所调用のメソッド $function_name は存在しません n";
- }
-
- function query($sql)
- {
- $res=mysql_query($sql) or die($this->error());
- return $res;
- }
-
- function fetch_array($ res)
- {はmysql_fetch_array($ res); obj_arr=array();
- $res=$this->query($sql);
- while($row=mysql_fetch_object($res))
- {
- $obj_arr[]=$row;
- }
- return $obj_arr ;
- }
-
- 関数 error()
- {
- if($this->linkflag)
- {
- return mysql_error($this->linkflag);
- }
- else return mysql_error();
- }
-
- 関数 errno ()
- {
- if($this->linkflag)
- {
- return mysql_errno($this->linkflag);
- }
- else return mysql_errno();
- }
-
- function inspired_rows()
- {
- return mysql_affected_rows ($this->linkflag);
- }
-
- function num_rows($sql)
- {
- $res=$this->execute($sql);
- return mysql_num_rows($res);
- }
-
- function num_fields ($res)
- {
- return mysql_num_fields($res);
- }
-
- function insert_id()
- {
- $previous_id=mysql_insert_id($this->linkflag);
- return $previous_id;
- }
-
- function result( $res,$row,$field=null)
- {
- if($field===null)
- {
- $res=mysql_result($res,$row);
- }
- else $res=mysql_result($res, $row,$field);
- return $res;
- }
-
- function version()
- {
- return mysql_get_server_info($this->linkflag);
- }
-
- function data_seek($res,$rowNum)
- {
- return mysql_data_seek($res,$rowNum);
- }
-
- function __destruct()
- {
- //mysql_close($this->linkflag);
- }
-
- }
-
- ?>
-
-
- 复制發
-
-
-
-
-
-
-
データベース管理、PHP、MySQL
-
|