Back
format& (clj)
(source)macro
(format& dsl & opts)
Experimental implementation of https://github.com/seancorfield/honeysql/issues/495
Implicitly treats any locally bound symbol as a variable to be substituted
in the symbolic SQL expression.
(let [x 42 y 13]
(format& '{select * from table where (= x y)}))
=> SELECT * FROM table WHERE (42 = 13)