Connecting codeigniter to mysql and oracle in the same application
问题 I'm using Mysql and Oracle for my CI application. I tried to connect it but I found that I cannot make a query to Oracle database. It always gave an error that the table is not exist. I already set the database.php to something like this $active_group = 'oracle'; $active_record = true; $db['oracle']['hostname'] = '10.10.10.1:1521/ocidb'; $db['oracle']['username'] = 'ociuser'; $db['oracle']['password'] = 'ocipass'; $db['oracle']['database'] = 'ocidb'; $db['oracle']['dbdriver'] = 'oci8'; $db[