next.jdbc.quoted

(source)
Provides functions for use with the `:table-fn` and `:column-fn` options that define how SQL entities should be quoted in strings constructed from Clojure data.
Public Variable Short Description
ansi (clj) ANSI "quoting".
mysql (clj) MySQL `quoting`.
oracle (clj) Oracle "quoting" (ANSI).
postgres (clj) PostgreSQL "quoting" (ANSI).
schema (clj) Given a quoting function, return a new quoting function that will process schema-qualified names by quoting each segment: ```clojure (mysql (name :foo.bar)) ;=> `foo.bar` ((schema mysql) (name :foo.bar)) ;=> `foo`.`bar` ```.
sql-server (clj) SQL Server [quoting].
strop (clj) Escape any embedded closing strop characters.