/**
  * Make a plain SQL Query.
  * Notice: The db resource is not closed by this method. The caller is in charge to do this!
  *
  * @TODO: logging integrieren!
  *
  * @param string $sqlQuery
  * @param int $debug
  * @return result pointer for SELECT, EXPLAIN, SHOW, DESCRIBE or boolean
  */
 public static function doQuery($query, array $options = array())
 {
     return parent::doQuery($query);
 }