we have this on Zend Manual:
$table = new Bugs();
$data = array(
'updated_on' => '2007-03-23',
'bug_status' => 'FIXED'
);
$where = $table->getAdapter()->quoteInto('bug_id = ?', 1234);
$table->update($data, $where);
Why do we need getAdapter and quoteInto again? I've read the manual but I don't understand.
What about the save() method, shouldn't we use it instead?
Regards, MEM