php封装db类连接sqlite3数据库的方法实例
程序员文章站
2022-05-14 23:53:27
前言
sqlite3扩展名在php 5.3.0+以上都会默认启用。可以在编译时使用--without-sqlite3来禁用它。
windows用户可通过启用php_sq...
前言
sqlite3扩展名在php 5.3.0+以上都会默认启用。可以在编译时使用--without-sqlite3来禁用它。
windows用户可通过启用php_sqlite3.dll才能使用此扩展。 php_sqlite3.dll默认包含在php 5.3.0之后的php发行版中。
有关详细的安装说明,请查看php教程及其官方网站。
本文主要介绍了关于php封装db类连接sqlite3的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
示例代码:
<?php class dbmanager{ public $db; function __construct(){ if(!file_exists('./db.php')){ $this->init(); return; } $this->db = new sqlite3('./db.php'); } function init(){ $this->db = new sqlite3('./db.php'); // todo: } function changes(){ return $this->db->changes(); } function query($sql,$param=null,$memb=null){ $stmt=$this->db->prepare($sql); if(!$stmt) return false; if($param){ if(is_array($param)){ for($i=0;$i<count($param);$i++) $stmt->bindvalue($i+1,$param[$i]); }else{ $stmt->bindvalue(1,$param); } } $rs=$stmt->execute(); if(!$rs){ $stmt->close(); return false; } $arr=$rs->fetcharray(sqlite3_num); $rs->finalize(); $stmt->close(); if(!$arr) return null; if(!$memb) return $arr; $res=array(); for($i=0;$i<count($memb);$i++){ $res[$memb[$i]]=$arr[$i]; } return $res; } function queryall($sql,$param=null,$memb=null){ $stmt=$this->db->prepare($sql); if(!$stmt) return false; if($param){ if(is_array($param)){ for($i=0;$i<count($param);$i++) $stmt->bindvalue($i+1,$param[$i]); }else{ $stmt->bindvalue(1,$param); } } $rs=$stmt->execute(); if(!$rs){ $stmt->close(); return false; } $res=array(); while($arr=$rs->fetcharray(sqlite3_num)){ if(!$memb) { $res[]=$arr; continue; } if(count($memb)==1 && $memb[0]==null){ $res[]=$arr[0]; continue; } $it=array(); for($i=0;$i<count($memb);$i++){ $it[$memb[$i]]=$arr[$i]; } $res[]=$it; } $rs->finalize(); $stmt->close(); return $res; } function querysingle($sql,$param=null){ $res=$this->query($sql,$param); if(!$res) return false; return $res[0]; } function querysingleall($sql,$param=null){ $stmt=$this->db->prepare($sql); if(!$stmt) return false; if($param){ if(is_array($param)){ for($i=0;$i<count($param);$i++) $stmt->bindvalue($i+1,$param[$i]); }else{ $stmt->bindvalue(1,$param); } } $rs=$stmt->execute(); if(!$rs){ $stmt->close(); return false; } $res=array(); while($arr=$rs->fetcharray(sqlite3_num)){ $res[]=$arr[0]; } $rs->finalize(); $stmt->close(); return $res; } function exec($sql,$param=null){ $stmt=$this->db->prepare($sql); if(!$stmt) return false; if($param){ if(is_array($param)){ for($i=0;$i<count($param);$i++) $stmt->bindvalue($i+1,$param[$i]); }else{ $stmt->bindvalue(1,$param); } } $rs=$stmt->execute(); if($rs) { $res=true; $rs->finalize(); }else{ $res=false; } $stmt->close(); return $res; } function begin(){ return $this->exec('begin'); } function rollback(){ return $this->exec('rollback'); } function commit(){ return $this->exec('commit'); } function escapestring($s){ return $this->db->escapestring($s); } //最新插入的id function lastinsertrowid(){ return $this->db->lastinsertrowid(); } function lasterrormsg (){ return $this->db->lasterrormsg(); } } ?>
pdo支持数据库移植,如果你的部署将来有多种数据库,那就用它了.同时,pdo是c设计的,执行效率较高.他已经封装为php的扩展库组件了.运行快,效率高
更多关于php用pdo如何封装简单易用的db类的内容可以参考这篇文章:
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
推荐阅读
-
php的mssql数据库连接类实例
-
PHP基于MySQLI函数封装的数据库连接工具类【定义与用法】
-
php封装db类连接sqlite3数据库的方法实例
-
PHP基于MySQLI函数封装的数据库连接工具类【定义与用法】
-
Zend Framework教程之连接数据库并执行增删查的方法(附demo源码下载)_php实例
-
Python操作Oracle数据库的简单方法和封装类实例
-
PHP封装了一个DB数据库 mysql 的类
-
Laravel5.1数据库连接、创建数据库、创建model及创建控制器的方法_php实例
-
CI框架出现mysql数据库连接资源无法释放的解决方法_php实例
-
php的mssql数据库连接类实例