基本php5.3之後就不用特地安裝sqlite3動態連線庫了,如果實在不行,可以修改php.ini裡sqlite3的相關部分,把前面的注釋去掉,然後重啟伺服器即可。
/*
* connect to sqlite database
*/$db = new sqlite3('stan.db');
$results = $db->query('select * from stations');
while ($row = $results->fetcharray())
stan.db是資料庫名稱,記得須放在php工程目錄下。
可以用$db->exec($stmt);來執行相應的sql語句,例子如下:
$db->exec('insert into stations values (1, "def", 0)');
php封裝db類連線sqlite3資料庫的方法例項
前言 sqlite3swcfz副檔名在php 5.3.0 以上都會預設啟用。可以在編譯時使用 without sqlite3來禁用它。windows使用者可通過啟用php sqlite3.dll才能使用此擴充套件。php sqlite3.dll預設包含在php 5.3.0之後的php發行版中。有關詳...
Sqlite3 資料庫使用
iphone本身是支援 sqlite3 資料庫的,在專案中匯入libsqlite3.dylib。並建立資料庫,在終端,建立資料庫的方式 mkdir sql 建立sql資料夾 cd sql 進入sql目錄下 sqlite3 student.sql 建立名為 student.sql的資料庫 建立表 插入...
sqlite3資料庫操作
1 開啟資料庫 1 需要制定資料庫的路徑 nsstring filepath nshomedirectory documents data.sqlite 2 建立資料庫的物件 sqlite3 qingyundb null 3 開啟命令 sqlite3 open dbfilepath utf8stri...