Gdn_SQLDriver::escapeSql PHP Method

escapeSql() protected method

ie. adds backticks or any other database-specific formatting.
protected escapeSql ( mixed $String, boolean $FirstWordOnly = false )
$String mixed The string (or array of strings) of SQL to be escaped.
$FirstWordOnly boolean A boolean value indicating if the first word should be escaped only.
    protected function escapeSql($String, $FirstWordOnly = false)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'EscapeSql'), E_USER_ERROR);
    }