zend-db-table

delete with join in Zend-Framework

This're my tables: To update a document I need to delete all functions. What is the best approach to do this in ZendFramework? Is there a solution using delete and join? ...

Zend_Db, how to work with related tables?

I want to learn to work with related tables in the ZF to the end. (1) Can anyone help with this? there are 2 users table and *users_openid* with a link to many. I would like to implement a relationship between the tables at Zend_Db so that such users from taking it openid on Drugs findDependentRowset, add openid, openid to take the user...

UNION and NOT IN Mysql Operation with Zend framework

Hi, I need to execute the following mysql query in Zend;I am not an excpert with Zend framework SELECT `optionride`.`featureoption_id`, `optionride`.`featureoptionride_id`,`foption`.`featureoptionblock_id`, `foption`.`labelname`,`optionride`.`value` FROM `engine4_ride_featureoptionrides` AS `optionride` LEFT JOIN `engine4_ride_featu...

When to use which Zend_Db class? Zend_Db_Select vs. Zend_Db_Table_Abstract

I think it's possible to write select queries with either Zend_Db_Select or Zend_Db_Table_Abstract, but I don't understand when to use which of the two. Is one more optimized for something than the other? Are joins "easier" with one or the other? Thanks! ...