Skip to content

Instantly share code, notes, and snippets.

@cigitia
Last active August 29, 2015 14:28
Show Gist options
  • Save cigitia/e1635fd4272f8c921303 to your computer and use it in GitHub Desktop.
Save cigitia/e1635fd4272f8c921303 to your computer and use it in GitHub Desktop.
(require '[clojure.java.jdbc :as jdbc])
(def db
{:classname "org.sqlite.JDBC"
:subprotocol "sqlite"
:subname "test.db"})
(jdbc/db-do-commands db
(jdbc/create-table-ddl :people [:name "text"]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment