Add an SQLite dialect to /Language/SQL/SimpleSQL/Dialect.lhs
-- | SQLite dialect
sqlite :: Dialect
sqlite = addLimit ansi2011
{ diBackquotedIden = True -- https://sqlite.org/lang_keywords.html
, diSquareBracketQuotedIden = True -- https://sqlite.org/lang_keywords.html
}