sql

All things SQL and JDBC...
borkdude 2020-06-13T18:53:42.241700Z

The next version of babashka will be able to run honeysql as a library:

$ export BABASHKA_CLASSPATH=$(clojure -Sdeps '{:deps {honeysql {:mvn/version "RELEASE"}}}' -Spath)
$ bb -e "(require '[honeysql.core :as hsql]) (hsql/format {:select [:a :b :c] :from [:foo] :where [:= :a \"foo\"]})"
["SELECT a, b, c FROM foo WHERE a = ?" "foo"]

👏 3
🦜 1
seancorfield 2020-06-13T19:43:44.241900Z

@borkdude I cross-posted that into #honeysql since you're not in that channel.