/**
* Advances the reader to the next row in a result set.
* @return array the current row, false if no more row available
*/
public function read()
{
//Try..Catch to prevent Function sequence error: -11067
try {
return parent::read();
} catch (\Exception $ex) {
}
return false;
}