PHP SQLite类
作者:bea
代码如下: <? /** * SQLite类 * 2009-5-6 * 连万春 * */ class SQLite { // 当前SQL指令 public $_mQueryStr = ''; // 当前结果 public $_mResult = null; // SQLite连接句柄 protected $_mSqlite; // 警告信息 protected $_mErrorInfo; /** * 数据库连接 构造类 *
代码如下:
<?
/**
* SQLite类
* 2009-5-6
* 连万春
*
*/
class SQLite {
// 当前SQL指令
public $_mQueryStr = '';
// 当前结果
public $_mResult = null;
// SQLite连接句柄
protected $_mSqlite;
// 警告信息
protected $_mErrorInfo;
/**
* 数据库连接 构造类
*
* @param string $databaseFile 数据库文件
* @return unknown
*/
public function __construct($databaseFile){
if(file_exists($databaseFile)){
$this->_mSqlite = new PDO('sqlite:'.$databaseFile);
}else{
$this->_mErrorInfo="未找到数据库文件";
return false;
}
}
/**
* 数据库有返回结果的语句操作
*
* @param srting $sql SQL语句
* @return unknown
*/
public function getAll($sql){
if (empty($sql)) {
$this->_mErrorInfo="SQL语句错误";
return false;
}
$result=$this->_mSqlite->prepare($sql);
if ( false === $result) {
return array();
}
$result->execute();
$this->_mResult = $result->fetchAll();
if ( false === $this->_mResult) {
return array();
}
return $this->_mResult;
}
/**
* 执行INSERT,DELETE,UPDATA操作
*
* @param srting $sql SQL语句
* @return unknown
*/
public function query($sql){
if (empty($sql)) {
$this->_mErrorInfo="SQL语句错误";
return false;
}
//$this->_mSqlite->exec($sql)or die(print_r($this->_mSqlite->errorInfo()));
$this->_mSqlite->exec($sql);
return true;
}
/**
* 返回错误信息
*
* @return unknown
*/
public function setError(){
return $this->_mErrorInfo;
}
}
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP mail 通过Windows的SMTP发送邮件失败的解决方案
- php 字符过滤类,用于过滤各类用户输入的数据
- PHP的单引号和双引号 字符串效率
- php session 错误
- php print EOF实现方法
- php 方便水印和缩略图的图形类
- 简单的php 验证图片生成函数
- PHP 数组入门教程小结
- php 无限级 SelectTree 类
- PHP日期时间函数的高级应用技巧
- PHP 模拟登陆MSN并获得用户信息
- 抓取YAHOO股票报价的类
- PHP 采集心得技巧
- DISCUZ 论坛管理员密码忘记的解决方法
- PHP获取当前文件所在目录 getcwd()函数
- php 购物车实例(申精)
- PHP 编写的 25个游戏脚本
- PHPMyAdmin 快速配置方法
- PHP 在线翻译函数代码