This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-05
Channels
- # announcements (15)
- # aws (7)
- # babashka (105)
- # beginners (35)
- # biff (5)
- # calva (48)
- # cider (5)
- # clj-kondo (25)
- # cljdoc (14)
- # clojure (84)
- # clojure-czech (2)
- # clojure-dev (6)
- # clojure-europe (58)
- # clojure-nl (6)
- # clojure-norway (19)
- # clojure-portugal (2)
- # clojure-uk (5)
- # clojurescript (23)
- # cloverage (5)
- # code-reviews (5)
- # conjure (28)
- # data-science (1)
- # datomic (53)
- # events (6)
- # exercism (7)
- # fulcro (16)
- # graalvm-mobile (2)
- # honeysql (29)
- # improve-getting-started (2)
- # kaocha (32)
- # lambdaisland (2)
- # lsp (29)
- # malli (3)
- # overtone (1)
- # pedestal (8)
- # polylith (3)
- # portal (6)
- # quil (2)
- # rdf (15)
- # releases (2)
- # rewrite-clj (14)
- # sci (9)
- # shadow-cljs (7)
- # specter (5)
- # sql (5)
- # xtdb (38)
com.seancorfield/next.jdbc {:mvn/version "1.2.780"}
is available:
• Address https://github.com/seancorfield/next-jdbc/issues/204 by adding next.jdbc/on-connection
.
• Address https://github.com/seancorfield/next-jdbc/issues/203 by adding a note to the *PostgreSQL Tips & Tricks* section.
• Update build-clj
to v0.8.0.
This should help address the Ragtime issue mentioned above.
Does anyone here find much use for functions and procedures with clojure and our sql libraries, postgresql specifically?
@jmckitrick Do you mean stored procedures (and user-defined SQL functions)? I pretty much never use either, regardless of DB, because I don't want some of my code in the database and the majority of it separately under version control. I've always avoided stored procs because of the versioning/ops complexity around that.
Yeah, I generally agree. Some years ago, my CTO was an avid fan. It was an interesting approach, and I was curious if it persists today.
Hi there folks, is there a way to .setObject
's last parameter in clojure/java.jdbc
I would like to do the following here and avoid PGObject
- I am planning on using pgjdbc-ng
https://stackoverflow.com/a/67034459/1888507