Hello, is there any reason for not having auto quoting of query parameters for delete() and update() methods?
$this->update($data, $this->getAdapter()->quoteInto('id = ?', $obj->id));
I mean, we have it for where() method: $query =
$this->select()->where('id = ?', $value);
IMHO, it would be uniformly and easily like this:
$this->update($data, 'id = ?', $obj->id);
Regards, Fred
