CakePHP 1.3 - Having problems baking with oracle -


the comand 'cake bake all' works fine when database mysql, fails when try generate mvc code using oracle.

the application works expected when database.php file modified use oracle database after generate mvc code using mysql.

so believe oracle isn't problem.

how can 'cake bake all' working when oracle default database?

database.php code:

 var $default = array(     'driver' => 'oracle',     'persistent' => false,     'login' => 'login',     'password' => 'password',     'database' => 'ip:1521/database'     ); 

you have make sure using proper database cakephp using , supports version of php , wamp / mamp / lampserver
then start configuration.
databases supported cakephp
find list of databases supported cakephp here


find list of drivers here

, configure it. thing here configure php-sqlsrv wamp server


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

C# WinForm - loading screen -