您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

PHP之SQLite数据库类操作与用法实例

2025/6/6 15:08:57发布41次查看
这篇文章主要介绍了php实现的简单操作sqlite数据库类与用法,结合具体实例形式分析了php封装的针对sqlite数据库相关增删改查操作技巧与使用方法,需要的朋友可以参考下
本文实例讲述了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之sqlite数据库类操作与用法实例的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product