實用簡單的mysql 資料庫連接類_PHP教程

來源:互聯網
上載者:User
實用簡單的mysql教程 資料庫教程串連類
class DB
{
//database connection
var $con = FALSE;

function DB($MYSQL_HOST=MYSQL_HOST, $MYSQL_USER=MYSQL_USER, $MYSQL_PASS=MYSQL_PASS,$MYSQL_DB=MYSQL_DB)
{
$this->con = @mysql_connect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) or die("Could not connect to database");

if ($this->con)
{
@mysql_select_db($MYSQL_DB, $this->con) or die ("Could not select database");
}

return $this->con;
}


function Query($sql, $tran = false)
{
// if (!file_exists(MYSQL_LOG))
// {
// @umask(0);
// @mkdir(MYSQL_LOG, 0777);
// }

// ¼־
//$fp = @fopen(MYSQL_LOG.date("Ymd").".txt", "a");

// д־
// @fwrite($fp, date("Y-m-d H:i:s")."|$sqlrn");
// @fclose($fp);

$this->sql = $sql;

if ($tran)
{
$this->result = @mysql_query($this->sql) OR $this->RollBack();
return $this->result;
}
else
{
mysql_query("SET NAMES 'utf8'");
//mysql_query("SET NAMES 'gbk'");
$this->result = @mysql_query($this->sql);
return $this->result;
}
}


function RollBack()
{
$this->Query("ROLLBACK;");
die("MySQL ROLLBACK;");
}


function NumRows($result)
{
$this->result = $result;
return @mysql_num_rows($this->result);
}


function FetchRow($result)
{
$this->result = $result;
return @mysql_fetch_row($this->result);
}


function FetchArray($result)
{
$this->result = $result;
return @mysql_fetch_array($this->result, MYSQL_ASSOC);
}
function FetchArray2($result)
{
$this->result = $result;
return @mysql_fetch_array($this->result, MYSQL_BOTH);
}

function FetchObject($result)
{
$this->result = $result;
return @mysql_fetch_object($this->result);
}


function FreeResult($result)
{
$this->result = $result;
return @mysql_free_result($this->result);
}

function DataSeek($result)
{
//複位記錄集指標
$this->result = $result;
return mysql_data_seek($this->result,0);
}

function InsertID()
{
//$this->con = $con;
return @mysql_insert_id($this->con);
}


function Close()
{
if($this->con)
{
@mysql_close($this->con);
}
}
}

http://www.bkjia.com/PHPjc/630886.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/630886.htmlTechArticle實用簡單的mysql教程 資料庫教程串連類 class DB { //database connection var $con = FALSE; function DB($MYSQL_HOST=MYSQL_HOST, $MYSQL_USER=MYSQL_USER, $MYSQL_PASS=MYSQL...

  • 相關文章

    聯繫我們

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