我想使用SQLite3
with Agile Toolkit
。我在包含 SQLite 驱动程序的文档atk4
中找到了它,但我找不到任何关于如何连接到SQLite DB.
我尝试使用Pear:DB DSN 文档中的格式将随附的示例应用程序的数据库连接更改atk4
为SQLite :MySql
$config['dsn']='sqlite:////var/www/webdev/atk4_example.db';
但我不断收到找不到驱动程序 PDO 错误:
Application Error: Database Connection Failed
BaseException, code: 0
Additional information:
* PDO error: could not find driver
* DSN: :host=;dbname=;charset=utf8
/var/www/webdev/atk4/lib/DB.php:94
SQLitePDO
驱动程序似乎已正确安装在服务器上。phpinfo() 和PHP/PDO/SQLite3
示例页面都确认它有效。
我正在学习敏捷工具包、PHP 和一般 Web 开发,所以我可能会遗漏一些微不足道的东西。