Skip to content

Instantly share code, notes, and snippets.

Created December 19, 2012 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/243d4dc223878317a4ee to your computer and use it in GitHub Desktop.
Save anonymous/243d4dc223878317a4ee to your computer and use it in GitHub Desktop.
(require '[clojure.java.jdbc :as sql])
(defn db [] (sql/with-connection "postgres://localhost/tanga_dev" partial))
(db
(:username
(first
(sql/with-query-results results ["select * from users"] (into [] results)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment