Skip to content

Instantly share code, notes, and snippets.

@rbxbx
Created February 17, 2015 14:28
Show Gist options
  • Save rbxbx/f826c11aacb4797c19de to your computer and use it in GitHub Desktop.
Save rbxbx/f826c11aacb4797c19de to your computer and use it in GitHub Desktop.
get table names from jdbc w/ Clojure
(-> @db-connection
jdbc/get-connection
(.getMetaData)
(.getTables nil nil nil (into-array ["TABLE" "VIEW"]))
resultset-seq
doall)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment