一个MYSQL操作类
程序员文章站
2022-10-06 08:11:16
复制代码 代码如下:
<?php
class db{
var $host_addr = "localhost";
var $host_user = "root";
var $host_psw = "123";
var $db_name = "test";
var $link_id;
var $query_id;
var $numrow;
function db(){
$this->link_id = @mysql_connect($this->host_addr,$this->host_user,$this->host_psw);
if($this->link_id){
@mysql_select_db($this->db_name,$this->link_id) or $this->halt("数据库连接失败!");
}else{
$this->halt("连接服务器失败!");
return false;
}
return $this->link_id;
}
function query($sql){
$this->query_id = @mysql_query($sql,$this->link_id);
if($this->query_id){
return $this->query_id;
}else{
$this->halt("sql error::");
return false;
}
}
function numrow(){
return $this->numrow = @mysql_num_rows($this->query_id);
}
function close(){
return @mysql_close($this->link_id);
}
function halt($msg){
echo "<font color=\"#ff0000\">".$msg."</font>";
}
}
?>
复制代码 代码如下:
<?php
class db{
var $host_addr = "localhost";
var $host_user = "root";
var $host_psw = "123";
var $db_name = "test";
var $link_id;
var $query_id;
var $numrow;
function db(){
$this->link_id = @mysql_connect($this->host_addr,$this->host_user,$this->host_psw);
if($this->link_id){
@mysql_select_db($this->db_name,$this->link_id) or $this->halt("数据库连接失败!");
}else{
$this->halt("连接服务器失败!");
return false;
}
return $this->link_id;
}
function query($sql){
$this->query_id = @mysql_query($sql,$this->link_id);
if($this->query_id){
return $this->query_id;
}else{
$this->halt("sql error::");
return false;
}
}
function numrow(){
return $this->numrow = @mysql_num_rows($this->query_id);
}
function close(){
return @mysql_close($this->link_id);
}
function halt($msg){
echo "<font color=\"#ff0000\">".$msg."</font>";
}
}
?>
推荐阅读
-
MySQL修改外键删除时操作出现error121解决办法_MySQL
-
javascript - 在分享到Q空间的同时,如何实现同时执行另外一个操作?
-
Android数据库操作工具类分享
-
Oracle 导出的txt数据怎么导入到另一个MySQL数据库中
-
Mysql系列(十二)Mysql监控操作
-
Mac 下mysql,apache,php的一些配置操作
-
Mysql教程:教你为root用户指定一个目录
-
一个关于php执行mysql语句的有关问题,头都快搞炸,求前辈
-
javascript - 后端提供给前端restful的接口,前端怎么操作,我想要一个具体的案例,可以提供下吗?
-
用PHP与MYSQL按要求展示一个页面