CakePHP and Oracle

2013-04-08 Thread GuiPedrosa
Hello to everyone,

i am using CakePHP 1.3.14(15) with Oracle. But the newer versions of 
CakePHP officially doesnt support Oracle. Do you know if it will be 
developed? Is there any news about that? 

I am working in a company and we will be changing the Framework in the 
future if we dont find a solution. I want to keep working with Cake.

Thank you all.
Guilherme Pedrosa Lima
Brazil

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: CakePHP and Oracle redirecting problem

2011-06-21 Thread Ahsan Khan
My debug level is already 2 but nothing shows.

On Jun 21, 1:10 pm, Ryan Schmidt  wrote:
> On Jun 21, 2011, at 02:01, Ahsan Khan wrote:
>
> > I just start an application with cakephp and oracle, it displayed that
> > it can find database.php but also get 2 errors, they are related to
> > redirecting.
>
> And what are those errors, specifically?
>
> > If i paste any controller name directly it shows me a
> > blank page.
>
> Set debug level to 2 to see what's actually happening.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: CakePHP and Oracle redirecting problem

2011-06-21 Thread Ryan Schmidt

On Jun 21, 2011, at 02:01, Ahsan Khan wrote:

> I just start an application with cakephp and oracle, it displayed that
> it can find database.php but also get 2 errors, they are related to
> redirecting.

And what are those errors, specifically?

> If i paste any controller name directly it shows me a
> blank page.

Set debug level to 2 to see what's actually happening.


-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


CakePHP and Oracle redirecting problem

2011-06-21 Thread Ahsan Khan
I just start an application with cakephp and oracle, it displayed that
it can find database.php but also get 2 errors, they are related to
redirecting. If i paste any controller name directly it shows me a
blank page.

Is there anyone can help me to find this solution?

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: CakePHP and Oracle (status of compatibility)

2009-11-20 Thread kemikTc
I have previously written a class to manupulate oracle using php's oci
(in projects without cake).
So are you saying you wrote your own class, and are somehow using it
in Cake?  Or did you manipulate the existing dbo_oracle.php?

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=.




Re: CakePHP and Oracle (status of compatibility)

2009-11-19 Thread majna
I was unable to call Oracle function/procedure and bind IN and OUT
variables.
So I turned to PHP's oci extension.

record join is supported well.

On Nov 17, 7:36 pm, kemikTc  wrote:
> After using CakePHP and MySQL for a few project.  I have a new project
> where I am forced to use Oracle.
>
> I am looking for feedback from anyone who has tried CakePHP and Oracle
> in the past.
>
> My main concerns would be
> - ability to use bind variable
> - record id insertion using sequences
> - reserved keywords
> - record joins
>
> This project is quite robust, and I will be including Auth and ACL
> components (which I was able to implement in MySQL)
>
> Any other potential issues you guys can mention would be great.

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=.




CakePHP and Oracle (status of compatibility)

2009-11-17 Thread kemikTc
After using CakePHP and MySQL for a few project.  I have a new project
where I am forced to use Oracle.

I am looking for feedback from anyone who has tried CakePHP and Oracle
in the past.

My main concerns would be
- ability to use bind variable
- record id insertion using sequences
- reserved keywords
- record joins

This project is quite robust, and I will be including Auth and ACL
components (which I was able to implement in MySQL)

Any other potential issues you guys can mention would be great.

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=.




[SOLVED] CakePHP and Oracle 11g issues

2009-09-08 Thread Rafael Felix Correa

Hi everyone,

I'm writing this post only as a resource for those that are trying to
make CakePHP applications run over Oracle 11g.
I noticed that dbo_oracle.php doesn't concatenate the host and port
parameters to the third parameter on the ocilogon function (php.net/
ocilogon).

The php.net page of this function warns that you should pass a string
like this:

host:port/database

to  the third parameter of the ocilogon function. But that doesn't
happen on dbo_oracle.php, which passes the database name parameter as
it comes from the configuration written in app/config/database.php.


I've made the communication between then work, but i would like to
leave this post as a further reference to everyone that run into
troubles trying to make it work.

[]'s

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP and Oracle... Can't get it to work :(

2008-05-07 Thread seb

> Fatal error: Call to undefined function oci_connect() in XAMPPLite
> \htdocs\cake\cake\libs\model\datasources\dbo\dbo_oracle.php on line
> 144
> 
> What am I doing wrong here ?

This means that you don't have the Oracle client libraries installed.

http://www.oracle.com/technology/tech/oci/instantclient/index.html

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



CakePHP and Oracle... Can't get it to work :(

2008-05-07 Thread 0xCAFE

First, I download version 1.2.0.6311 beta from the CakePHP website.
I tried to connect to Oracle and it does not work.  Here is my
database.php content :
var $default = array(
'driver' => 'oracle',
'persistent' => false,
'connect' => 'oci_connect',
'host' => 'server',
'port' => '1234',
'login' => 'apps',
'password' => '*',
'database' => 'DEV',
'schema' => '',
'prefix' => '',
'encoding' => ''
);

When I try to reach the cake page I get this :
 Your database configuration file is present.

Fatal error: Call to undefined function oci_connect() in XAMPPLite
\htdocs\cake\cake\libs\model\datasources\dbo\dbo_oracle.php on line
144

What am I doing wrong here ?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---