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.
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.
(schema quoting)
Given a quoting function, return a new quoting function that will process schema-qualified names by quoting each segment:
(mysql (name :foo.bar)) ;=> `foo.bar`
((schema mysql) (name :foo.bar)) ;=> `foo`.`bar`
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` ```
(strop s x e)
Escape any embedded closing strop characters.
Escape any embedded closing strop characters.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close