我正在使用codeigniter 3和sql server 2008.我想与sql server数据库进行远程连接。但codeigniter给出错误或提供服务器和错误是我的问题标题。 任何人都可以帮助解决这个问题。我的数据库设置如下
$db['default'] = array(
'dsn' => '',
'hostname' => '(192.168.0.139)\PKSRV\SQLSERVER2008',
'username' => 'xxxxx',
'password' => 'xxxxx',
'database' => 'xxxxx',
'dbdriver' => 'mssql',
'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
);