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
