-1

我在使用 PostgreSQL 数据库的代码生成器时遇到问题,我已经在 main.php 中进行了配置.. ...

'modules'=>array(

    'gii'=>array(
        'class'=>'system.gii.GiiModule',
        'password'=>'123wasis85',
        'ipFilters'=>array('127.0.0.1','::1'),
    ),

),

...

'db'=>array(
        'connectionString' => 'pgsql:host=127.0.0.1;port=5432;dbname=yii_first',

            'emulatePrepare' => true,

            'username' => 'postgres',

            'password' => 'anghauz',

            'charset' => 'utf8',
        ),

...

但是当我使用 crud 生成时它仍然会产生错误结果,这是错误..:

...

CDbConnection failed to open the DB connection: could not find driver

C:\BitNami\apache2\htdocs\yii\framework\gii\generators\crud\CrudCode.php(44)

...

我使用bitnami在localhost n中制作它..

请帮助我的解决方案..

4

1 回答 1

3

请转到已安装的 php 文件夹中的 php.ini 文件。取消注释以下行。

extension=php_pdo_pgsql.dll
extension=php_pgsql.dll

它对我有用。

于 2012-10-17T04:34:24.733 回答