var $default = array(
'driver' => 'oracle',
'persistent' => false,
'host' => '',
'port' => '',
'login' => '',
'password' => '',
'database' => '',
'schema' => '',
'prefix' => 'cake_',
'encoding' => ''
);
should be
var $default = array(
'driver' => 'oracle',
'persistent' => false,
'host' => '',
'port' => '',
'login' => '',
'password' => '',
'database' => '',
'schema' => '',
'prefix' => 'cake_',
'encoding' => '',
'connect' => 'oci_connect'
);
Yesterday, we spent the entire day integrating the latest nightly build with all of the modifications that we had already made to the beta files. This took us most of the day and once we had it all completed, we started moving all of our models and controllers in to sub-folders. This was the main reason for integrating the nightly build. Recently, the CakePHP dev team added the auto scanning of sub-folders for models and controllers. We had to rename a great deal of our files and variables, but it makes for much more organized code.
Yes, I noticed also that Oracle support was officially supported as of CakePHP 1.2..
The CakePHP local home page when using CakePHP 1.1 said that it could connect to the Oracle database.
-> "Cake is able to connect to the database."
But when I use the same $default in CakePHP 1.2RC3, it said that it couldn't connect to the Oracle database.
-> "Cake is NOT able to connect to the database."
I just checked my error.log file, but I think it only concerns about the HTML Helper..
2008-10-13 23:20:36 Warning: Warning (512): Method HtmlHelper::input does not exist in [CORE/cake/libs/view/helper.php, line 148] 2008-10-13 23:20:36 Warning: Warning (512): Method HtmlHelper::tagErrorMsg does not exist in [CORE/cake/libs/view/helper.php, line 148] 2008-10-13 23:20:36 Warning: Warning (512): Method HtmlHelper::textarea does not exist in [CORE/cake/libs/view/helper.php, line 148] 2008-10-13 23:20:36 Warning: Warning (512): Method HtmlHelper::submit does not exist in [CORE/cake/libs/view/helper.php, line 148]
