I use the following code:
$str= array('createdid' => $creator_newid);
$where = array();
$where['id IN'] = $instance_ids;
$this->_table->update($str, $where);
And here the $instance_ids contains set of string (that is 1, 2, 3, 4, 5, 6…) and I'm getting zend error.
How do I solve this?