!empty($this-rowsArray) ? $this-rowsArray=array() : '';
$this-mysql_query_rst($sql);
if(mysql_errno() == 0){
while($row = mysql_fetch_array($this-result,$type)) {
$this-rowsArray[] = $row;
}
return $this-rowsArray;
}else{
return '';
}
}
//更新、删除、添加记录数
function uidRst($sql){
if($this-conn == ''){
$this-init_conn();
}
@mysql_query($sql);
$this-rowsNum = @mysql_affected_rows();
if(mysql_errno() == 0){
return $this-rowsNum;
}else{
return '';
}
}
//返回最近插入的一条数据库的id值
function returnRstId($sql){
if($this-conn == ''){
$this-init_conn();
}
@mysql_query($sql);
if(mysql_errno() == 0){
return mysql_insert_id();
}else{
return '';
}
}
//获取对应的字段值
function getFields($sql,$fields){
$this-mysql_query_rst($sql);
if(mysql_errno() == 0){
if(mysql_num_rows($this-result)0){
$tmpfld = @mysql_fetch_row($this-result);
$this-fields = $tmpfld[$fields];
}
return $this-fields;
}else{
return '';
}
}
//错误信息
function msg_error(){
if(mysql_errno() != 0) {
$this-msg = mysql_error();
}
return $this-msg;
}
//释放结果集
function close_rst(){
mysql_free_result($this-result);
$this-msg = '';
$this-fieldsNum = 0;
$this-rowsNum = 0;
$this-filesArray = '';
$this-rowsArray = '';
}
//关闭数据库
function close_conn(){
$this-close_rst();
mysql_close($this-conn);
$this-conn = '';
}
//取得数据库版本
function db_version() {
return mysql_get_server_info();
}
}
【类的封装到数据库php 类封装了数据和操作】类的封装到数据库php的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于类封装了数据和操作、类的封装到数据库php的信息别忘了在本站进行查找喔 。
推荐阅读
- 拼多多达人版能直播卖货吗,拼多多达人直播和店铺直播的区别
- 怎么判断电源带主板和显卡,怎么判断是电源还是主板
- 微信公众号上可以放视频吗,微信公众号里可以放视频吗
- 牧场模拟器游戏更新内容,牧场模拟器具体什么时候更新
- 装好了mysql怎么运行 mysql安装后怎么运行
- 双硬盘主从盘怎么分,两块硬盘如何设置主从
- 2021什么u盘好用,什么u盘好用耐用
- 格斗游戏直播排名,格斗游戏直播排名前十
- Linux命令行怎么出 linux命令行怎么输入命令