I’m new to PHP and I recently started learning Zend Framework. What DAL are you using? Do you think that Zend_Db_* can do the magic? I need it mainly for MySql db. Does it have any limitations and can I use it in big project without any problems because I don’t want to go the wrong way.
10x
Zend_Db works perfectly. If you still want to you can send direct SQL to the database in case you have problems.
Zend_Db is built on top of PDO, so it’s pretty secure in terms of parameter injection (considering they use it themselves), however, you can take a look at the source code if you don’t trust them (the joys of open source!)