/**
  * Method to lock the database table for writing.
  *
  * @return  boolean  True on success.
  *
  * @throws  RuntimeException
  */
 protected function _lock()
 {
     $this->_db->lockTable($this->_tbl);
     $this->_locked = true;
     return true;
 }