Creating a Model using Stored Procedures with Zend Framework
- by jwhat
I'm using Zend Framework and I'd like to build a model to perform read/write operations on a database... using stored procedures.
I know how stored procedures work, but I have yet to use them within Zend Framework. Is there any built in support for stored procedures that I should know about?
What is the best practice way to create a model in this senario? Should I extend Zend_Db_Table_Abstract or some other class?