当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP实现的简单操作SQLite数据库类与用法示例

PHP实现的简单操作SQLite数据库类与用法示例

2017年12月12日  | 移动技术网IT编程  | 我要评论

本文实例讲述了php实现的简单操作sqlite数据库类与用法。分享给大家供大家参考,具体如下:

sqlite是一款轻型的数据库,是遵守acid的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百k的内存就够了。它能够支持windows/linux/unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如tcl、php、java等,还有odbc接口,同样比起mysql、postgresql这两款开源世界著名的数据库管理系统来讲,它的处理速度比他们都快。

这里为大家提供一个简洁的php操作sqlite类:

<?php
/***
//应用举例
require_once('cls_sqlite.php');
//创建实例
$db=new sqlite('blog.db'); //这个数据库文件名字任意
//创建数据库表。
$db->query("create table test(id integer primary key,title varchar(50))");
//接下来添加数据
$db->query("insert into test(title) values('泡菜')");
$db->query("insert into test(title) values('蓝雨')");
$db->query("insert into test(title) values('ajan')");
$db->query("insert into test(title) values('傲雪蓝天')");
//读取数据
print_r($db->getlist('select * from test order by id desc'));
//更新数据
$db->query('update test set title = "三大" where id = 9');
***/
class sqlite
{
 function __construct($file)
 {
  try
  {
   $this->connection=new pdo('sqlite:'.$file);
  }
  catch(pdoexception $e)
  {
   try
   {
    $this->connection=new pdo('sqlite2:'.$file);
   }
   catch(pdoexception $e)
   {
    exit('error!');
   }
  }
 }
 function __destruct()
 {
  $this->connection=null;
 }
 function query($sql) //直接运行sql,可用于更新、删除数据
 {
  return $this->connection->query($sql);
 }
 function getlist($sql) //取得记录列表
 {
  $recordlist=array();
  foreach($this->query($sql) as $rstmp)
  {
   $recordlist[]=$rstmp;
  }
  return $recordlist;
 }
 function execute($sql)
 {
  return $this->query($sql)->fetch();
 }
 function recordarray($sql)
 {
  return $this->query($sql)->fetchall();
 }
 function recordcount($sql)
 {
  return count($this->recordarray($sql));
 }
 function recordlastid()
 {
  return $this->connection->lastinsertid();
 }
}
?>

相关 php 配置说明:

1. 先测试 php 能否连接 sqlite 数据库:

建立一个php文件

<?php
$conn = sqlite_open('test.db');
?>

测试这个文件能否正常运行。

如果没有能正常加载sqlite模块,就可能出现这样的错误:

fatal error: call to undefined function sqlite_open() in c:\apache\apache2\htdocs\test.php on line 2

解决办法如下:

2. 打开 php.ini 文件,将以下三行前面的分号删除:

;extension=php_sqlite.dll
;extension=php_pdo.dll
;extension=php_pdo_sqlite.dll

重新启动web服务器

更多关于php相关内容感兴趣的读者可查看本站专题:《php基于pdo操作数据库技巧总结》、《php+oracle数据库程序设计技巧总结》、《php+mongodb数据库操作技巧大全》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网