Re: Conneect with Oracle

2011-02-24 Thread Nguyễn Trịnh Hồng Ngọc
thanks so much ^^ I have check it and I can connect to oracle database ^^ I use configuration like this: 'driver' => 'oracle', 'connect'=>'oci_connect', 'persistent' => false, 'host' => 'localhost', 'port'=>1521, 'logi

Re: Conneect with Oracle

2011-02-22 Thread Zaky Katalan-Ezra
Linux? windows? Do you see OCI in phpinfo()? -- 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

Re: Conneect with Oracle

2011-02-22 Thread Nguyễn Trịnh Hồng Ngọc
thanks for your helping, but I dont know why it does not work on my project :( On 18 Tháng Hai, 21:35, ojonam wrote: > Hi, > > I had a few issues with the configuration as well.  Try removing the > host name and adding it as a prefix to the database field. Also, > specify the 'connect' field. > >

Re: Conneect with Oracle

2011-02-19 Thread Zaky Katalan-Ezra
This one should work: var $default = array('driver' => 'oracle', 'connect' => 'oci', 'persistent' => false, 'host' => 'localhost', 'port'=>1521, 'login' => 'postsUser', 'password' => 'pass', 'schema'=>'post', //Th

Re: Conneect with Oracle

2011-02-18 Thread ojonam
Hi, I had a few issues with the configuration as well. Try removing the host name and adding it as a prefix to the database field. Also, specify the 'connect' field. var $default = array( 'driver' => 'oracle', 'connect' => 'oci_connect', 'p