2010-12-16 54 views

回答

4

您應該可以使用PDO類(Cross DBMS)。

9

PHP has a native SQLite3 class,這是默認啓用的PHP 5.3.0的

例from PHP Manual

$db = new SQLite3('mysqlitedb.db'); 
$db->exec('CREATE TABLE foo (bar STRING)'); 
$db->exec("INSERT INTO foo (bar) VALUES ('This is a test')"); 
$result = $db->query('SELECT bar FROM foo'); 
var_dump($result->fetchArray()); 
+0

debian 8軟件包版本PHP PHP 5.6.20-0 + deb8u1(cli)(built:Apr 27 2016 11:26:05) Copyright(c)1997-2016 PHP Group Zend Engine v2.6.0 ,版權所有(c)1998-2016 Zend Technologies 使用Zend OPcache v7.0.6-dev,版權所有(c)1999-2016,由Zend Technologies提供,不帶sqlite,必須通過'apt-get install php5-sqlite'安裝。 – exxecc 2016-06-09 09:19:34

相關問題