将CodeIgniter 3.0.6与PostgreSQL连接

时间:2016-05-05 17:06:11

标签: php postgresql codeigniter-3

我正在尝试将CodeIgniter 3.0.6与PostgreSQL连接,并且正在使用带有PHP 7.0.5的Apache HTTP服务器。我在论坛中寻找了一些解决方案,但我没有找到任何关于它的信息。

以下是数据库配置:

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => 'password',
    'database' => 'db_name',
    'dbdriver' => 'postgre',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE,
    'port' => 5432
);

错误消息如下:

  

遇到未捕获的异常

     

输入:错误

     

消息:调用未定义的函数pg_connect()

     

文件名:E:\ xampp \ htdocs \ facturacion \ system \ database \ drivers \ postgre \ postgre_driver.php

     

行号:155

Image of exception

0 个答案:

没有答案