Liking cljdoc? Tell your friends :D

next.jdbc.quoted

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.
raw docstring

ansiclj

(ansi s)

ANSI "quoting"

ANSI "quoting"
sourceraw docstring

mysqlclj

(mysql s)

MySQL quoting

MySQL `quoting`
sourceraw docstring

oracleclj

Oracle "quoting" (ANSI)

Oracle "quoting" (ANSI)
sourceraw docstring

postgresclj

PostgreSQL "quoting" (ANSI)

PostgreSQL "quoting" (ANSI)
sourceraw docstring

schemaclj

(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`
```
sourceraw docstring

sql-serverclj

(sql-server s)

SQL Server [quoting]

SQL Server [quoting]
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close