/**
  * Execute a query
  *
  * @param string $sql the query to run
  *
  * @return boolean
  */
 public function query($sql)
 {
     return $this->_adapter->query($sql);
 }