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 <[email protected]> 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 [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
