Skip to content

Instantly share code, notes, and snippets.

@swlkr
Created November 4, 2017 17:12
Show Gist options
  • Save swlkr/cea6844cd0271ae0b12e29576e900db1 to your computer and use it in GitHub Desktop.
Save swlkr/cea6844cd0271ae0b12e29576e900db1 to your computer and use it in GitHub Desktop.
(ns your-project.models.items
(:require [oksql.core :as oksql]))
(def db {:connection-uri "postgres://localhost:5432/your_project_db"})
(def query (partial oksql/query db))
(defn all []
(query :items/all))
(defn fetch [id]
(query :items/fetch {:id id}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment