All Projects → funcool → Suricatta

funcool / Suricatta

Licence: bsd-2-clause
High level sql toolkit for clojure (backed by jooq library)

Programming Languages

clojure
4091 projects

Projects that are alternatives of or similar to Suricatta

Evolve
Database migration tool for .NET and .NET Core projects. Inspired by Flyway.
Stars: ✭ 477 (+519.48%)
Mutual labels:  sql, database, postgresql
Go Sqlbuilder
A flexible and powerful SQL string builder library plus a zero-config ORM.
Stars: ✭ 539 (+600%)
Mutual labels:  sql, database, postgresql
Pg
Golang ORM with focus on PostgreSQL features and performance
Stars: ✭ 4,918 (+6287.01%)
Mutual labels:  sql, database, postgresql
Pg timetable
pg_timetable: Advanced scheduling for PostgreSQL
Stars: ✭ 382 (+396.1%)
Mutual labels:  sql, database, postgresql
Efcore.pg
Entity Framework Core provider for PostgreSQL
Stars: ✭ 838 (+988.31%)
Mutual labels:  sql, database, postgresql
Franchise
🍟 a notebook sql client. what you get when have a lot of sequels.
Stars: ✭ 3,823 (+4864.94%)
Mutual labels:  sql, database, postgresql
Qb
The database toolkit for go
Stars: ✭ 524 (+580.52%)
Mutual labels:  sql, database, postgresql
Ansible Role Postgresql
Ansible Role - PostgreSQL
Stars: ✭ 310 (+302.6%)
Mutual labels:  sql, database, postgresql
Eralchemy
Entity Relation Diagrams generation tool
Stars: ✭ 767 (+896.1%)
Mutual labels:  sql, database, postgresql
Db Dumper
Dump the contents of a database
Stars: ✭ 744 (+866.23%)
Mutual labels:  sql, database, postgresql
Dbeaver
Free universal database tool and SQL client
Stars: ✭ 23,752 (+30746.75%)
Mutual labels:  sql, database, postgresql
Goqu
SQL builder and query library for golang
Stars: ✭ 984 (+1177.92%)
Mutual labels:  sql, database, postgresql
Jet
Type safe SQL builder with code generation and automatic query result data mapping
Stars: ✭ 373 (+384.42%)
Mutual labels:  sql, database, postgresql
Jooq
jOOQ is the best way to write SQL in Java
Stars: ✭ 4,695 (+5997.4%)
Mutual labels:  sql, database, postgresql
Rel
💎 Modern Database Access Layer for Golang - Testable, Extendable and Crafted Into a Clean and Elegant API
Stars: ✭ 317 (+311.69%)
Mutual labels:  sql, database, postgresql
Citus
Distributed PostgreSQL as an extension
Stars: ✭ 5,580 (+7146.75%)
Mutual labels:  sql, database, postgresql
Sqlfiddle3
New version based on vert.x and docker
Stars: ✭ 242 (+214.29%)
Mutual labels:  sql, database, postgresql
Squeal
Squeal, a deep embedding of SQL in Haskell
Stars: ✭ 308 (+300%)
Mutual labels:  sql, database, postgresql
Beekeeper Studio
Modern and easy to use SQL client for MySQL, Postgres, SQLite, SQL Server, and more. Linux, MacOS, and Windows.
Stars: ✭ 8,053 (+10358.44%)
Mutual labels:  sql, database, postgresql
Node Pg Migrate
Node.js database migration management for Postgresql
Stars: ✭ 838 (+988.31%)
Mutual labels:  sql, database, postgresql

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/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].