yii framework: sqlite with "could not find driver" issue 解决方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > yii framework: sqlite with "could not find driver" issue 解决方法

yii framework: sqlite with "could not find driver" issue 解决方法

 2013/9/12 22:52:49  Heis  程序员俱乐部  我要评论(0)
  • 摘要:根据yiiframework的官方教程,使用sqlite,在利用Gii生成Modelskeleton的过程中,很多人会遇到以下错误CDbConnectionfailedtoopentheDBconnection:couldnotfinddriver我的是win7+apache+sqlite+PHPv5.3.27,这是我的解决方案:1.检查PHP.ini是否启用了sqlite的扩展模块配置,要将这行前面的分号去掉。extension=php_pdo_sqlite.dll2.由于PHP5
  • 标签:方法 解决方法 解决 Framework not SQL

根据yii framework的官方教程,使用 sqlite,在利用Gii生成 Model skeleton 的过程中,很多人会遇到以下错误

?

class="Error Message" name="code">CDbConnection failed to open the DB connection: could not find driver

?

?

我的是win7+apache+sqlite+PHPv5.3.27,这是我的解决方案:

?

1. 检查PHP.ini是否启用了sqlite的扩展模块配置,要将这行前面的分号去掉。

?

extension=php_pdo_sqlite.dll

?

2. 由于PHP5.2的默认查找扩展模块(Extension)路径是c:\php,而这个版本monospace;">php_pdo_sqlite.dll文件是放在“PHP根路径/ext”文件夹下面,所以会导致加载失败。测试的时候可以在命令行输入

?

>PHP根路径\PHP.exe

?如果显示无法加载php_pdo_sqlite.dll,就是加载出了问题。

?

这时候可以通过修改PHP.ini文件去修改加载默认路径。找到extension_dir这一项,修改为

?

extension_dir = 你的PHP根路径/ext

然后再次使用PHP.exe去测试,或者访问?http://localhost/yii/requirements/index.php?查看“PDO SQLite扩展模块”这一项是否通过。

?

?

?

发表评论
用户名: 匿名