CodeIgniter Forums
A Database Error Occurred Unable to connect to your database server using the provided settings. error at Dbdriver. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: A Database Error Occurred Unable to connect to your database server using the provided settings. error at Dbdriver. (/showthread.php?tid=56066)



A Database Error Occurred Unable to connect to your database server using the provided settings. error at Dbdriver. - El Forum - 11-23-2012

[eluser]Unknown[/eluser]
Am using Oracle 10g on Windows XP 32bit machine. The machine has many other instances of database installed and running simultaneously on localhost and connected to remote server.
but when I run CI with Oracle to connect to database locally it's showing.

A Database Error Occurred
Unable to connect to your database server using the provided settings
error at **/**/Dbdriver.php at Line 124.


Please help it's really tiring.
I have nearly visited all related forums and tried all methods but of no avail!!
The code for connectivity in database.php is:
Code:
$active_group = 'default';
$active_record = TRUE;

$db['default']['hostname'] = '//127.0.0.1:1521';
$db['default']['username'] = 'BAR11';
$db['default']['password'] = '****';
$db['default']['database'] = '127.0.0.1:1521/ACERHO';
$db['default']['dbdriver'] = 'oci8';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

the code below is working on my machine Windows7 64 bit
Code:
$active_group = 'default';
$active_record = TRUE;

$db['default']['hostname'] = 'localhost:1521';
$db['default']['username'] = 'bar11';
$db['default']['password'] = '****';
$db['default']['database'] = 'localhost:1521/mgpt';
$db['default']['dbdriver'] = 'oci8';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

Please help!!!