我正在使用 PHP 中的 Titanium 开发桌面应用程序。我是使用 MySQL DB 的 PHP Web 开发人员,是使用 SQLite DB 的桌面新手
当我尝试打开 SQLite DB 时,它会引发致命错误
我使用的代码是
if ($db = sqlite_open('mysqlitedb', 0666, $sqliteerror)) {
sqlite_query($db, 'CREATE TABLE foo (bar varchar(10))');
sqlite_query($db, "INSERT INTO foo VALUES ('fnord')");
$result = sqlite_query($db, 'select bar from foo');
var_dump(sqlite_fetch_array($result));
} else {
die($sqliteerror);
}
只是 PHP.net 中的示例代码
PHP.net 说 SQLite 与 PHP 5+ 捆绑在一起
仅在 TItanium Studio 中引发的错误
在我的 XAMPP 中一切正常
你能帮忙吗?