vote up 0 vote down star
(ns db-example
   (:use [clojure.contrib.sql :only (with-connection with-query-results)] )
   (:import (java.sql DriverManager)))

;; need this to load the sqlite3 driver (as a side effect of evaluating the expression)
(Class/forName "org.sqlite.JDBC")

(def +db-path+  "...")
(def +db-specs+ {:classname  "org.sqlite.JDBC",
          	     :subprotocol   "sqlite",
        	     :subname	    +db-path+})

(def +transactions-query+ "select * from my_table")

(with-connection +db-specs+
  (with-query-results results [+transactions-query+]
    ;; results is an array of column_name -> value maps
    ))
flag

69% accept rate
3  
Is there something wrong with the code? – Robert Harvey Sep 26 at 1:32

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.