实用简单的mysql数据库连接类
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-12 09:52:15 浏览: 评论:0
- 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")."|$sql ");
- // @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);
- }//开源代码phpfensi.com
- function Close()
- {
- if($this->con)
- {
- @mysql_close($this->con);
- }
- }
- }
Tags: mysql数据库类 mysql连接类
- 上一篇:mysql数据库连接类
- 下一篇:微信公众号开发之微信公共平台消息回复类
相关文章
- ·PHP mysql数据库操作类(2014-09-10)
- ·mysql数据库连接操作类(2014-09-11)
- ·一款简单实用的php操作mysql数据库类(2021-05-03)
- ·php mysql完整数据库连接类(2014-09-11)
- ·实用mysql数据库连接类(2014-09-11)
- ·php mysql数据库连接类程序代码(2014-09-11)
- ·通用mysql数据库连接类代码(2014-09-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)