Wednesday, May 30, 2012

Re: Oracle

i can pass params on my find call .. refer this
https://bitbucket.org/odin88/cakephp-2.0-oracle/changeset/535a4133a59e

On Tuesday, 22 May 2012 21:38:41 UTC+8, rihad wrote:
Have you been able to use any conditionals in your find() calls?
I can't use even the simplest ones. See this thread:
http://groups.google.com/group/cake-php/browse_thread/thread/234f4a33b862d79a#

On May 22, 4:31 pm, oDiN <odi...@gmail.com> wrote:
> I have update the blog post. Check the latest code at Bitbucket. Also the
> stored procedure works fine too in CakePHP 2.1.2
>
>
>
>
>
>
>
> On Monday, 21 May 2012 20:46:46 UTC+8, rahajiyev wrote:
>
> > OMG, I just succeeded in getting paginator to work properly, with
> > sorting and all that! Apart from what was said in the tutorial above,
> > I also needed to tweak function describe() in Oracle.php.
>
> > The line where it says
> >  $sql = 'SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH FROM
> > all_tab_columns WHERE table_name = \'';
>
> > Changed
> > $sql .= strtoupper($this->fullTableName($model)) . '\'';
> > to
> > $sql .= strtoupper($model->useTable) . '\'';
>
> > Because WHERE table_name=prefix.my_table_name returns 0 results as
> > compared to my_table_name with no prefix part.
> > So far so good. If only I could get simple updates to work, life would
> > be beautiful :) Haven't tried that yet.

--
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+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: