Liking cljdoc? Tell your friends :D

inquery.core


escape-paramsclj/s

(escape-params params mode)
source

make-query-mapclj/s

(make-query-map names)
(make-query-map names {:keys [path]})
source

read-queryclj/s

(read-query path qname)
source (clj)source (cljs)

seq->batch-paramsclj/s

(seq->batch-params xs)

convert seq of seqs to updatable values (to use in SQL batch updates):

=> ;; xs [[#uuid 'c7a344f2-0243-4f92-8a96-bfc7ee482a9c' #uuid 'b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa'] [#uuid '3236ebed-8248-4b07-a37e-c64c0a062247' #uuid 'b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa']]

=> (seq->batch-params xs)

('c7a344f2-0243-4f92-8a96-bfc7ee482a9c','b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa'),
('3236ebed-8248-4b07-a37e-c64c0a062247','b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa')

to be able to plug them into something like:

update test as t set
  column_a = c.column_a
from (values
    ('123', 1),                << here
    ('345', 2)                 << is a batch of values
) as c(column_b, column_a)
where c.column_b = t.column_b;
convert seq of seqs to updatable values (to use in SQL batch updates):

 => ;; xs
    [[#uuid 'c7a344f2-0243-4f92-8a96-bfc7ee482a9c'
      #uuid 'b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa']
     [#uuid '3236ebed-8248-4b07-a37e-c64c0a062247'
      #uuid 'b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa']]

 => (seq->batch-params xs)

    ('c7a344f2-0243-4f92-8a96-bfc7ee482a9c','b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa'),
    ('3236ebed-8248-4b07-a37e-c64c0a062247','b29bc806-7db1-4e0c-93f7-fe5ee38ad1fa')

to be able to plug them into something like:

    update test as t set
      column_a = c.column_a
    from (values
        ('123', 1),                << here
        ('345', 2)                 << is a batch of values
    ) as c(column_b, column_a)
    where c.column_b = t.column_b;
sourceraw docstring

seq->in-paramsclj/s

(seq->in-params xs)
source

seq->update-valsclj/s

(seq->update-vals xs)
source

SqlParamclj/sprotocol

safety first

safety first

to-sql-stringclj/s

(to-sql-string this)

trusted type will be SQL'ized

trusted type will be SQL'ized
sourceraw docstring

treat-as?clj/s

(treat-as? k v)
source

with-paramsclj/s

(with-params query params)
(with-params query params {:keys [esc]})
source

with-predsclj/s

(with-preds query pred-map)
(with-preds query pred-map {:keys [prefix]})
  • adds predicates to the query
  • if "where" needs to be prefixed add {:prefix "where"}
  • will remove any SQL ops that a predicate starts with in case it needs to go right after "where"
  • if none preds matched with "where" prefix the prefix won't be used

=> (q/with-preds "select foo from bar where this = that" {#(= 42 42) "and dog = :bow" #(= 2 5) "and cat = :moo" #(= 28 28) "or cow = :moo"})

=> "select foo from bar where this = that and dog = :bow or cow = :moo"

;; or with "where":

=> (q/with-preds "select foo from bar" {#(= 42 42) "and dog = :bow" #(= 2 5) "and cat = :moo" #(= 28 28) "or cow = :moo"} {:prefix "where"})

=> "select foo from bar where dog = :bow or cow = :moo"

* adds predicates to the query
 * if "where" needs to be prefixed add {:prefix "where"}
 * will remove any SQL ops that a predicate starts with in case it needs to go right after "where"
 * if none preds matched with "where" prefix the prefix won't be used

=> (q/with-preds "select foo from bar where this = that"
                  {#(= 42 42) "and dog = :bow"
                   #(= 2 5) "and cat = :moo"
                   #(= 28 28) "or cow = :moo"})

=> "select foo from bar
     where this = that
     and dog = :bow
     or cow = :moo"

;; or with "where":

=> (q/with-preds "select foo from bar"
                  {#(= 42 42) "and dog = :bow"
                   #(= 2 5) "and cat = :moo"
                   #(= 28 28) "or cow = :moo"}
                   {:prefix "where"})

=> "select foo from bar
     where dog = :bow
           or cow = :moo"
sourceraw docstring

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

× close