/**
  * Execute the given SQL parameterised query with the specified arguments
  *
  * @param string $sql The SQL query to execute. The ? character will denote parameters.
  * @param array $parameters An ordered list of arguments.
  * @param int $errorLevel The level of error reporting to enable for the query
  * @return Query
  */
 public function preparedQuery($sql, $parameters, $errorLevel = E_USER_ERROR)
 {
     return $this->database->preparedQuery($sql, $parameters, $errorLevel);
 }