How does one query a Zend_Db_Table_Row

NubDeagueboum

New Member
Is it possible to run an SQL (Zend_Db_Select) query against a Zend_Db_Table_Row object? What about joining two Zend_Db_Table_Row objects?I know it sounds a bit retarded, but I'm processing hundreds and thousands of rows. I already have the row object that I'm manipulating, so I don't want to query the db again.I hope that's clear. If not, please ask me to clarify.Edit:To clarify, the objects are in memory. I've already retrieved them from the database.The reason for this is:There are thousands of records in a "log" table. I need to react to these depending on multiple user defined criterion. Time is important when processing these logs. There for a new process is forked to make this happen in a timely manner. A new process is forked for each log. Hence, the objects already exist in memory.
 
Back
Top