本文主要和大家介紹了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
重新啟動網頁伺服器
以上是PHP操作SQLite資料庫類別與用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!