代码是为连接编写的,但是函数pg_connect()不适用于框架和数据库,即codeigniter和postgreSQL。
要与数据库连接,我已经为config / database.php编写了代码 但是错误仍然存在,表明连接无法连接。
我完成了config / database.php文件的信息 详细信息已完成,并根据数据库连接的要求提供。
$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => 'localhost',
'hostname' => 'localhost',
'username' => 'puneetchhabra',
'password' => 'shambhu',
'database' => 'success_story',
'dbdriver' => 'postgre',
'port' => '',
'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
);
错误消息
严重性:警告
消息:pg_connect():无法连接到PostgreSQL服务器:丢失 连接信息字符串中“ localhost”之后的“ =“
文件名:postgre / postgre_driver.php
行号:154
无法使用提供的设置连接到数据库服务器。
文件名:core / CodeIgniter.php
行号:518
答案 0 :(得分:0)
取出DSN。通常,您应该使用参数数组或DSN字符串,而不要同时使用两者。