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

Re: Using Oracle with Cake

2006-05-04 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 ?

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-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