Skip to content

Instantly share code, notes, and snippets.

@codelahoma
codelahoma / multiple-resultsets.clj
Last active March 2, 2017 13:56
Using clojure.java.jdbc to process multiple result sets from a SQL Server instance.
;; Does not handle parametized queries for the
;; simple reason that I was dealing with a pre-formatted
;; string to call a stored procedure.
;;
;; Feel free to fork and improve. :-)
(require '[clojure.java.jdbc :as j]
'[clojure.java.jdbc.sql :as s])