Re: Using Oracle with Cake

2006-05-05 Thread [EMAIL PROTECTED]
The latest CakePHP 1.x has a dbo_odbc.php. Have you tried setting up your Oracle as ODBC and using that?? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-

Re: Using Oracle with Cake

2006-05-04 Thread Dave Rogers
I have a not so elegant first round attempt at getting oracle to work. I modified the dbo_source.php and datasource.php files. I also created a dbo_oracle.php file. The code for all three is at http://cakephp.org/pastes/show/081dbc0d1d0c131feec6be10e02d9285 Please give me suggestions on how to

Re: Using Oracle with Cake

2006-05-04 Thread Dave Rogers
There were some things with my dbo_oracle that were causing problems: * PHP OCI functions do not return the table, so everything was being put into the [0] array, which caused problems if the column name from different tables were used. * The base dbo_source.php file was aliasing tables with

Re: Using Oracle with Cake

2006-05-03 Thread Thomas Baron
I'm interested in an Oracle dbo driver for Cake. Can you post your code so I can test it and report any bug/info ? Otherwise, what about a Oracle support in Cake (either by OCI native or PEAR driver) ? nate, you told me once a PEAR driver may be available in May... Any info or delay about it ? th

Re: Using Oracle with Cake

2006-04-24 Thread nate
Open an Enhancement ticket on Cake Trac (https://trac.cakephp.org). Also, you can hop on Cake's IRC at irc.freenode.net, or http://irc.cakephp.org. Or email me. I just implemented an SQL Server driver, so I might be able to lend you some insights. --~--~-~--~~~---~-

Re: Using Oracle with Cake

2006-04-24 Thread [EMAIL PROTECTED]
I have been working on writing a CakePHP native Oracle db driver. I'm used to working with MySQL, so I used that as a baseline for the Oracle driver. This is the first time I've had to use Oracle. Where should I submit the code for others to look at it so we can work out the bugs? I also notic

Re: Using Oracle with Cake

2006-04-21 Thread [EMAIL PROTECTED]
These are the errors I am recieving: Warning: Invalid argument supplied for foreach() in C:\HTTP\cake.localhost\cake\libs\controller\controller.php on line 655 Notice: Object of class Account to string conversion in C:\HTTP

Using Oracle with Cake

2006-04-21 Thread [EMAIL PROTECTED]
I've been looking into Cake for a new project at work. It works ok with MySQL, but I'm having trouble getting Oracle to work. Below is the db connection information: var $default = array('driver' => 'adodb', 'connect' => 'oci8', 'host' => null, 'login'=> 'userName',