自己封装的一个mysql数据库工具类
<?php
class SqlHelper{
public $conn; //连接资源变量
public $host; //主机
public $user; //用户名
public $password; //密码
public $db; //数据库
function __construct($host="localhost",$user="root",$password,$db){
$this->host=$host;
$this->user=$user;
$this->password=$password;
$this->db=$db;
$this->conn=mysql_connect($this->host,$this->user,$this->password);
if(!$this->conn){
die("数据连接失败".mysql_error());
}
mysql_select_db($this->db,$this->conn) or die("数据库选择不正确".mysql_error());
mysql_query("set names utf8"); //设置字符集
}
function exec_dql($sql){ //查询指令
$res=mysql_query($sql);
if($res && mysql_num_rows($res)>0){
return $res;
}else{
die("查询语句操作失败".mysql_error());
}
}
function exec_dml($sql){ //dml增删改指令
$res=mysql_query($sql);
if($res && mysql_affected_rows()>0){
echo"数据操作成功";
}else{
echo"数据操作失败".mysql_error();
}
}
function close_connect(){
if($this->conn){
mysql_close($this->conn);
}
}
}
$sqlHelper=new SqlHelper("localhost","root","123456","www.022gcw.com");
$sql="select title from dede_archives where typeid=87";
$res=$sqlHelper->exec_dql($sql);
if($res){
while($row=mysql_fetch_assoc($res)){
echo $row[‘title‘]."<br/>";
}
}
?>
本文出自 “曹瑞东” 博客,请务必保留此出处http://977520990.blog.51cto.com/7054422/1599996
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。