module Sequel::SQLite::DatasetMethods

def quoted_identifier_append(sql, c)

SQLite uses the nonstandard ` (backtick) for quoting identifiers.
def quoted_identifier_append(sql, c)
  sql << BACKTICK << c.to_s << BACKTICK
end