This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-30
Channels
- # announcements (4)
- # babashka (3)
- # beginners (5)
- # calva (20)
- # cider (12)
- # clj-kondo (7)
- # cljs-dev (2)
- # clojure (76)
- # clojure-uk (4)
- # clojuredesign-podcast (8)
- # clojurescript (18)
- # clojutre (1)
- # cursive (9)
- # data-science (27)
- # datomic (2)
- # fulcro (32)
- # graalvm (4)
- # jackdaw (5)
- # jobs (2)
- # joker (5)
- # lumo (20)
- # off-topic (18)
- # pathom (3)
- # shadow-cljs (18)
- # sql (5)
- # tools-deps (1)
- # vim (11)
Hi. I'm attempting to insert json objects to pgdb. I convert clojure to json with clj-postgresql.types/map->parameter % :json
and that gives me back PGobject. So with a vector of PGobject's I'm trying to insert! them to my db (in transaction) with (apply jdbc/insert! trans-conn :catalog pgobject-items)
but the error I'm getting is count not supported on this type: PGobject
Does someone see what I'm doing wrong?