- 论坛徽章:
- 0
|
<?php
error_reporting(7);
// db class for mysql
// this class is used in all scripts
// do NOT fiddle unless you know what you are doing
class Mysql_DB {
var $database = "";
var $link_id = 0;
var $query_id = 0;
var $record = array();
var $errdesc = "";
var $errno = 0;
var $reporterror = 1;
var $server = "";
var $user = "";
var $password = "";
function Mysql_DB($servername,$dbusername,$dbpassword,$dbname){
$this->;server = $servername;////数据库服务器
$this->;user = $dbusername;////用户名
$this->;password = $dbpassword;/////密码
$this->;database = $dbname;////数据库名
$this->;connect(); ////连接数据库
}
function connect() { ////连接数据库方法
global $usepconnect;
if ( 0 == $this->;link_id ) {
if ($this->;password==""
{
$this->;link_id=mysql_pconnect($this->;server,$this->;user);
}
else
{
$this->;link_id=mysql_pconnect($this->;server,$this->;user,$this->;password);
}
if (!$this->;link_id) {
$this->;halt("连接数据库失败" ;
}
if ($this->;database!="" {
if(!mysql_select_db($this->;database, $this->;link_id)) {
$this->;halt("不能使用数据库: ".$this->;database);
}
}
}
}
function geterrdesc() {
$this->;error=mysql_error();
return $this->;error;
}
function geterrno() {
$this->;errno=mysql_errno();
return $this->;errno;
}
function select_db($database="" {///查询 select 语句实现
// select database
if ($database!="" {
$this->;database=$database;
}
if(!mysql_select_db($this->;database, $this->;link_id)) {
$this->;halt("不能使用数据库:".$this->;database);
}
}
function query($query_string) { ////////处理SQL语句
global $query_count,$showqueries,$explain,$querytime;
// do query
if ($showqueries) {
echo "查询语句: $query_string\n";
global $pagestarttime;
$pageendtime=microtime();
$starttime=explode(" ",$pagestarttime);
$endtime=explode(" ",$pageendtime);
$beforetime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
echo "Time before: $beforetime\n";
}
$this->;query_id = mysql_query($query_string,$this->;link_id);
if (!$this->;query_id) {
$this->;halt("无效的 SQL: ".$query_string);
}
$query_count++;
if ($showqueries) {
$pageendtime=microtime();
$starttime=explode(" ",$pagestarttime);
$endtime=explode(" ",$pageendtime);
$aftertime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$querytime+=$aftertime-$beforetime;
echo "Time after: $aftertime\n";
if ($explain and substr(trim(strtoupper($query_string)),0,6)=="SELECT" {
$explain_id = mysql_query("EXPLAIN $query_string",$this->;link_id);
echo "</pre>;\n";
echo "
<table width=100% border=1 cellpadding=2 cellspacing=1>;
<tr>;
<td>;<b>;table</b>;</td>;
<td>;<b>;type</b>;</td>;
<td>;<b>;possible_keys</b>;</td>;
<td>;<b>;key</b>;</td>;
<td>;<b>;key_len</b>;</td>;
<td>;<b>;ref</b>;</td>;
<td>;<b>;rows</b>;</td>;
<td>;<b>;Extra</b>;</td>;
</tr>;\n";
while($array=mysql_fetch_array($explain_id)) {
echo "
<tr>;
<td>;$array[table]&</td>;
<td>;$array[type]&</td>;
<td>;$array[possible_keys]&</td>;
<td>;$array[key]&</td>;
<td>;$array[key_len]&</td>;
<td>;$array[ref]&</td>;
<td>;$array[rows]&</td>;
<td>;$array[Extra]&</td>;
</tr>;\n";
}
echo "</table>;\n
;<hr>;\n";
echo "\n<pre>;";
} else {
echo "\n<hr>;\n\n";
}
}
return $this->;query_id;
}
function fetch_array($query_id=-1,$query_string="" {///取得信息列表
// retrieve row
if ($query_id!=-1) {
$this->;query_id=$query_id;
}
if ( isset($this->;query_id) ) {
$this->;record = mysql_fetch_array($this->;query_id);
} else {
if ( !empty($query_string) ) {
$this->;halt("Invalid query id (".$this->;query_id." on this query: $query_string" ;
} else {
$this->;halt("Invalid query id ".$this->;query_id." specified" ;
}
}
return $this->;record;
}
function free_result($query_id=-1) { //释放处理(query)
// retrieve row
if ($query_id!=-1) {
$this->;query_id=$query_id;
}
//return @mysql_free_result($this->;query_id);
}
function query_first($query_string) {////只有一条记录时(唯一识别)
// does a query and returns first row
$query_id = $this->;query($query_string);
$returnarray=$this->;fetch_array($query_id, $query_string);
$this->;free_result($query_id);
return $returnarray;
}
function data_seek($pos,$query_id=-1) {
// goes to row $pos
if ($query_id!=-1) {
$this->;query_id=$query_id;
}
return mysql_data_seek($this->;query_id, $pos);//将指定的结果标识所关联的 MySQL 结果内部的行指针移动到指定的行号
}
function num_rows($query_id=-1) {////////取得列表数组
// returns number of rows in query
if ($query_id!=-1) {
$this->;query_id=$query_id;
}
return mysql_num_rows($this->;query_id);
}
function num_fields($query_id=-1) {////返回结果集中字段的数目
// returns number of fields in query
if ($query_id!=-1) {
$this->;query_id=$query_id;
}
return mysql_num_fields($this->;query_id);
}
function insert_id() {
// returns last auto_increment field number assigned
return mysql_insert_id($this->;link_id);
}
function list_fields($tablename)
{
// returns fields of table
if ( ( $this->;database != "" )&&( $this->;link_id != "") )
{
return mysql_list_fields($this->;database, $tablename, $this->;link_id);
}
}
function field_name($query_id=-1, $num)
{
// returns value of fields
if ( $query_id != -1 )
{
$this->;query_id = $query_id;
}
return mysql_field_name($this->;query_id, $num);
}
function halt($msg) {
$this->;errdesc=mysql_error();
$this->;errno=mysql_errno();
// prints warning message when there is an error
global $technicalemail;
if ($this->;reporterror==1) {
$message="Database error in $this->;appname: $msg\n";
$message.="mysql error: $this->;errdesc\n";
$message.="mysql error number: $this->;errno\n";
$message.="Date: ".date("l dS of F Y h:i:s A")."\n";
$message.="Script: ".getenv("REQUEST_URI")."\n";
$message.="Referer: ".getenv("HTTP_REFERER")."\n";
@mail ($technicalemail,"$this->;appshortname Database error!",$message);
echo "\n<!-- $message -->;\n";
echo "\n<p>;数据库产生一个小的问题.\n";
echo "请按浏览器 刷新键 重试.</p>;";
echo "<p>;或向程序员询问.</p>;";
die("");
}
}
//附加函数*list_dbs
function list_dbs()
{
return mysql_list_dbs($this->;link_id);
}
//附加函数*list_tables
function list_tables($dbname)
{
if($dbname!="")
{
$result=mysql_list_tables($dbname,$this->;link_id);
$this->;select_db($this->;database);
return $result;
}
}
/*
//附加函数*list_fields////字段列表
function list_fields($dbname,$tablename)
{
if(($dbname!="")&&($this->;link_id!=""))
{
$result=mysql_list_fields($dbname,$tablename,$this->;link_id);
$this->;select_db($this->;database);
return $result;
}
}
*/
//附加函数*field_type
function field_type($query_id=-1, $num)///字段类型
{
if($query_id!=-1)
{
$this->;query_id = $query_id;
}
return mysql_field_type($this->;query_id, $num);
}
//附加函数*field_len
function field_len($query_id=-1, $num)
{
if($query_id!=-1)
{
$this->;query_id = $query_id;
}
return mysql_field_len($this->;query_id, $num);
}
//附加函数*field_flags
function field_flags($query_id=-1, $num)
{
if($query_id!=-1)
{
$this->;query_id = $query_id;
}
return mysql_field_flags($this->;query_id, $num);
}
}
//创建数据库连接实例
$DB_web = new Mysql_DB($servername,$dbusername,$dbpassword,$dbname);
////操作EXAMPLE///////
///$servername="127.0.0.1";
///$dbusername="root";
///$dbpassword="";
///$dbname="test";
/*----表---------testtable
CREATE TABLE `testtable` (
`id` int( NOT NULL auto_increment,
`fd1` varchar(200) NOT NULL default '',
`fd2` varchar(200) NOT NULL default '',
`fd3` varchar(200) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
*/
////////查询///////////
$sql="select * from testtable";
$res=$DB_web->;query($sql);
$res=$DB_web->;fetch_array($res);
///////插入/////
$sql="insert into testtable(fd1,fd2,fd3)values('A','B','C')";
$DB_web->;query($sql);
/////修改////////
$sql="update testtable set fd1='$fd1',fd2='$fd2',fd3='$fd3' where id=1";
$DB_web->;query($sql);
///////删除//////////
$sql="delete from testtable where id=1";
$DB_web->;query($sql);
?>; |
|