Zend Framework Relations vs. Table Select
- by rtmilker
Hey! I just want to know your guys opinion on using join tables within the zend framework.
Of course you can use relations by defining a referenceMap and dependentTables and stuff, or using
setIntegrityCheck(false)
within a db select(). The setIntegrityCheck version seems a little bit dirty to me, but the other version is not very suitable for big querys and joining many tables...
I'm a PHP developer for 5 years now and new to the zend framework and just want get a direction for my first project.
Thanks!!!