Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

CircleCI-Archived/suricatta

 
 

Repository files navigation

suricatta

Travis Badge

High level sql toolkit for clojure (backed by jooq library)

Latest Version

Clojars Project

Quick Start

Put suricatta on your dependency list:

[funcool/suricatta "2.0.0"]
[com.h2database/h2 "1.4.191"] ;; For this example only

Connect to the database and execute a query:

(require '[suricatta.core :as sc])

(with-open [ctx (sc/context "h2:mem:")]
  (sc/fetch ctx "select x from system_range(1, 2);"))
;; => [{:x 1} {:x 2}]

Documentation

http://funcool.github.io/suricatta/latest/

About

High level sql toolkit for clojure (backed by jooq library)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Clojure 88.1%
  • Shell 7.5%
  • Dockerfile 3.8%
  • Vim Script 0.6%