Hi, I'm going to start integrating some of the components into an application I'm building. Specifically, the DB components.
I'm using MySQL. If I define my schema using a string, is there an easy/built in way to create the table or update the schema if it's changed? Is there a best practice when it comes to defining models on top of the Zend_Db_Table_Row class? My most complicated model is a tree based product category. I've been using my own generic non-db tree handling class but would love to see other Zend-ish example. Is there a tree component floating around or an example? Matt p.s. I noticed the Zend_View_Helper_Uri class requires the zend front controller. Are there plans to make these view helpers more generic and re-usable with different frameworks? Why not have the Zend controller class inject the base url into the view, and then the view inject it into the uri helper instead of hard coding it into the helper itself?
