我正在尝试使用 ADOdb 连接到 sqlite3 数据库。使用:
- pdo_sqlite:有效
- sqlite3:
致命错误:未捕获的异常“异常”,带有消息“无法打开数据库:无法打开数据库文件”
sqlite:
无法连接到数据库
$driver = "pdo_sqlite";
$db = NewADOConnection("$driver://".urlencode(dirname(__FILE__)."/test.db3"));
if (!$db) {
die("Could not connect to database");
}
编辑
我还在adodb的论坛上问了这个问题:http://phplens.com/lens/lensforum/msgs.php?id=19236