As to case, in this particular application, one could have a version that
supports the typical styling guidelines for SQL statements.
SELECT blah FROM xyz WHERE zin=4
Run
could be DSL'd as:
const data: SqlQuery = sqls:
SELECT "blah"
FROM "users"
WHERE "zin = 4"
Run
It would avoid the use of backticks and have a certain visual appeal to SQL
coders.
But then you would be violating nim's case guidelines. Sometimes one can't win.
:-)
