public function fetchRow($row = null)
 {
     // avoid those annoying PEAR::DB strict standards warnings it causes
     $old = error_reporting();
     error_reporting(error_reporting() & ~E_STRICT);
     $res = parent::fetchRow($row);
     // reset
     error_reporting($old);
     return $res;
 }