Exemple #1
0
 /**
  * Execute the SQL statement.
  *
  * @param   boolean  $replacePrefixQuotes  Replace the prefixes inside the quotes too
  *
  * @return  mixed  A database cursor resource on success, boolean false on failure.
  *
  * @since   12.1
  * @throws  RuntimeException
  */
 public function execute($replacePrefixQuotes = false)
 {
     if ($replacePrefixQuotes) {
         $this->sql = $this->replacePrefix((string) $this->sql, '#__', $replacePrefixQuotes);
     }
     return parent::execute();
 }