Mysql 資料庫訪問類

來源:互聯網
上載者:User

/**
* @Purpose: Mysql資料庫訪問類
* @Package:
* @Author: lisen@sellingclub.cn
* @Modifications:
* @See:
* @Time: 2008.10.10
*/
class DB_MYSQL
{
//============================================================
private $Host = 'localhost';
private $Database = 'db_name';
private $User = 'user';
private $Password = 'password';
//============================================================
private $Link_Id = 0; //資料庫連接
private $Query_Id = 0; //查詢結果
private $Row_Result = array(); //結果集組成的數組
private $Field_Result = array(); //結果集欄位組成的數組
private $Affected_Rows; //影響的行數
private $Rows; //結果集中記錄的行數
private $Fields; //結果集中欄位數
private $Row_Postion = 0; //記錄指標位置索引
public $Insert_Id = 0;
//************************************************************
/**** 建構函式 ****/
function __construct()
{
$this->connect();
}
/**** 解構函式 ****/
function __destruct()
{
@mysql_free_result($this->Query_Id);
mysql_close($this->Link_Id);
}
/**** 串連伺服器,選擇資料庫 ****/
function connect($Database = '',$Host = '',$User = '',$Password = '')
{
$Database = $Database == '' ? $this->Database : $Database;
$Host = $Host == '' ? $this->Host : $Host;
$User = $User == '' ? $this->User : $User;
$Password = $Password == '' ? $this->Password : $Password;
//-----------------------------------------------------------//
if(0 == $this->Link_Id)
{
$this->Link_Id = @mysql_pconnect($Host,$User,$Password);
if(!$this->Link_Id)
{
$this->halt('串連資料庫服務端失敗!');
}
if(!mysql_select_db($this->Database,$this->Link_Id))
{
$this->halt('不能開啟指定的資料庫:'.$this->Database);
}
}
return $this->Link_Id;
}
/**** 釋放記憶體 ****/
function free()
{
if(@mysql_free_result($this->Query_Id))
{
unset($this->Row_Result);
}
$this->Query_Id = 0;
}
/**** 執行查詢 ****/
function query($Query_String)
{
//釋放上次查詢記憶體
if($this->Query_Id)
{
$this->free();
}
if(0 == $this->Link_Id)
{
$this->connect();
}
//設定中文字元集
@mysql_query('set names gb2312');
$this->Query_Id = mysql_query($Query_String,$this->Link_Id);
$this->Insert_Id = mysql_insert_id();
if(!$this->Query_Id)
{
$this->halt('SQL查詢語句出錯:'.$Query_String);
}
@mysql_query('set names gb2312');
return $this->Query_Id;
}
/**** 將結果集指標指向指定行 ****/
function seek($pos)
{
if(@mysql_data_seek($this->Query_Id,$pos))
{
$this->Row_Position = $pos;
return true;
}
else
{
$this->halt('定位結果集發生錯誤!');
return false;
}
}
/**** 返回結果集組成的數組 ****/
function get_rows_array()
{
$this->get_rows();
for($i = 0; $i < $this->Rows; $i++)
{
if(!mysql_data_seek($this->Query_Id,$i))
{
$this->halt('mysql_data_seek 查詢出錯!');
}
$this->Row_Result[$i] = mysql_fetch_array($this->Query_Id);
}
return $this->Row_Result;
}
/**** 返回結果集欄位組成的數組 ****/
function get_fields_array()
{
$this->get_fields();
for($i = 0; $i < $this->Fields; $i++)
{
$obj = mysql_fetch_field($this->Query_Id,$i);
$this->Field_Result[$i] = $obj->name;
}
return $this->Field_Result;
}
/**** 返回影響記錄數 ****/
function get_affected_rows()
{
$this->Affected_Rows = mysql_affected_rows($this->Link_Id);
return $this->Affected_Rows;
}
/**** 返回結果集中的記錄數 ****/
function get_rows()
{
$this->Rows = mysql_num_rows($this->Query_Id);
return $this->Rows;
}
/**** 返回結果集中的欄位個數 ****/
function get_fields()
{
$this->Fields = mysql_num_fields($this->Query_Id);
return $this->Fields;
}
/**** 執行sql語句並返回由查詢結果中第一行記錄組成的數組 ****/
function fetch_one_array($sql)
{ @mysql_query('set names gb2312');
$this->query($sql);
return mysql_fetch_array($this->Query_Id);
}
/**** 列印錯誤資訊 ****/
function halt($msg)
{
$this->Error = mysql_error();
printf("<font style='font-family:Arial,宋體;font-size:12px;'> <b>資料庫發生錯誤:</b> %s \n",$msg);
printf("MySQL 返回錯誤資訊:</b> %s \n",$this->Error);
printf("錯誤頁面:<font style='color:#0000EE;text-decoration:underline'>%s</font> \n",$_SERVER['PHP_SELF']);
printf(" 請將錯誤資訊提交到系統管理員或網站程式員處理! \n");
die('<b><font color=red>指令碼終止</font></b></font>');
}
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.