Wed, 6/30/2010
I just had trouble telling cakephp to connect to my oracle 11g R2 but I finally found a solution:
class DATABASE_CONFIG {
var $default = array(
'driver' => 'oracle',
'persistent' => false,
'connect' => 'oci_connect',
'login' => 'OE',
'password' => 'yourpassword',
'database' => 'localhost:1521/orcl',
'prefix' => '',
);
}
Works! Now I can go on playing with cakephp.
-
howardtharp liked this
-
schipplock posted this
Comments
