$db['default'] = array(
'dsn' => '',
'hostname' => 'IP',
'username' => 'xxxxxxx',
'password' => 'xxxxxxx',
'database' => 'xxxxxxx',
'dbdriver' => 'sqlsrv',
'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' => FALSE
);
Unable to connect to your database server using the provided settings.
Filename: C:/xampp/htdocs/project/system/database/DB_driver.php
Line Number: 436
In my project I have the above database config and url to access the project. I am getting the error in connection of database when access the project but accessing the database using Microsoft SQL Management Studio using the same credential I dont have problem.
What is the correct setting to connect?