The model name corresponding to the table "phpbb_posts" should be "PhpbbPost", so create a model named PhpbbPost (capital letter does matter), make it accessible by your controller, and then you can call: $this->PhpbbPost->query($yourQuery) and get your results.
The query() method substitutes findBySql() which is deprecated, but it's the same, and it returns a multi-dimensional array in if there's something to return... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php -~----------~----~----~----~------~----~------~--~---
