This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-31
Channels
- # announcements (5)
- # babashka (105)
- # beginners (92)
- # calva (77)
- # cider (17)
- # cljdoc (8)
- # cljs-dev (8)
- # cljsrn (8)
- # clojure (272)
- # clojure-dev (25)
- # clojure-europe (5)
- # clojure-italy (6)
- # clojure-nl (7)
- # clojure-norway (3)
- # clojure-uk (108)
- # clojurescript (326)
- # code-reviews (4)
- # cursive (6)
- # datomic (37)
- # duct (5)
- # emacs (14)
- # fulcro (23)
- # graphql (1)
- # juxt (1)
- # kaocha (2)
- # leiningen (10)
- # malli (9)
- # music (1)
- # nrepl (12)
- # pathom (21)
- # pedestal (2)
- # planck (4)
- # quil (3)
- # reitit (29)
- # rewrite-clj (10)
- # shadow-cljs (82)
- # spacemacs (29)
- # sql (6)
- # tools-deps (19)
Hi All. I’m fairly new at Clojure but finding my way around nicely. I’m working on some code I’ve inherited that uses clojure.java.jdbc to do an insert!
and I haven’t been able to find any documentation on it to say what, if anything, it returns. Can someone point me to something that talks about that?
Hi @darrell! The API reference docs for clojure.java.jdbc
are here http://clojure.github.io/java.jdbc/#clojure.java.jdbc/insert!
There's additional documentation here http://clojure-doc.org/articles/ecosystem/java_jdbc/home.html (it's a bit outdated because of problems with the http://clojure-doc.org server)
Perfect, thanks @seancorfield!
c.j.j. is considered "Stable" at this point -- unlikely to get further maintenance beyond blocking bug fixes. All future work is being done on https://cljdoc.org/d/seancorfield/next.jdbc/ for whenever your team feels like migrating to the newer library.