Turn a raw SQL statement into a vector of SQL-substrings interspersed with clojure symbols for the query's parameters.
For example, (parse-statement "SELECT * FROM person WHERE :age > age")
becomes: ["SELECT * FROM person WHERE " age " > age"]
Turn a raw SQL statement into a vector of SQL-substrings interspersed with clojure symbols for the query's parameters. For example, `(parse-statement "SELECT * FROM person WHERE :age > age")` becomes: `["SELECT * FROM person WHERE " age " > age"]`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close