Re: Framework for existing database and complicated joins Click to flag this post

2009-11-02 Thread j0n4s.h4rtm...@googlemail.com
My idea: You can encapsulate complex writes by modifing your function save() of models you create and you can encapsulate complex reads by creating SQL VIEWS. Other than that: 100 tables? for what? Clean database design based on an ERD does NOT depend on applications running ORM-Layers or in MVC-

Re: Framework for existing database and complicated joins Click to flag this post

2009-11-01 Thread Robert P
Have a skim through this article by one of the creators: http://bakery.cakephp.org/articles/view/quick-tip-doing-ad-hoc-joins-in-model-find I used the method myself recently to build a 7 table join for filtering complex data. And Kohana (as well as its parent, CodeIgniter) barely even has MVC, w

Framework for existing database and complicated joins Click to flag this post

2009-10-30 Thread Siamak
Hello, I have a big application (a social network) which has around 100 tables. It is currently developed using traditional coding styles (i.e. no MVC or ORM). - I need to know whether cakephp will allow me to have complex joins without the need to build a proper object model (i.e. relations etc