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 builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs | 
| ← | Move to previous article | 
| → | Move to next article | 
| Ctrl+/ | Jump to the search field |