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

powernoodle/zaum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zaum

A Clojure library designed to ... well, that part is up to you.

Usage

;; - connection details {:host :port :username :scheme :Options :Password}

;;TODO: open problems: joins and subqueries

;; - read with a tablename and specific connection {:operation :read :entity :tablename :connection {}}

;; -> read results: {:operation :read :entity :tablename} ;;==> {:result :read :command {:operation :read, :entity :tablename} :status :ok ; - or error :data [] ; - or exception on error :count n :time ms}

;; - read all of the documents or records from a table {:operation :read :entity :tablename}

;; - read a specific item or items {:operation :read :entity :tablename :identifier {}}

{:operation :read :entity :tablename :identifier {} :sort-by :key :sort-order :ascending :descending fn}

;; - update a given item {:operation :update :entity :tablename :identifier {:key valuematch} :data {}}

;; - delete a given item {:operation :delete :entity :tablename :identifier []}

;; - create an item {:operation :create :entity :tablename :data {}}

;; - create a table {:operation :create :level :entity :entity :tablename}

;; - delete a table {:operation :delete :level :entity :entity :tablename}

;; - migrations {:migration :name :up [] ; <- any transformation is possible :down []}

;; - we would use migrations to create views in couch

;; - perform a system-specific operation {:operation :native :command "" or some doc'd keyword}

;; - a thing for compacting a Couch DB {:operation :native :command :compact :entity :tablename :connection {}}

;; - Front End API is merely: (execute query) (validate query) ;; <- use spec (migrate-up [migrations]) (migrate-down [migrations] steps) (schema) ;; - generate a schema - a lot to do here (make-connection command) <- create a reusable connection model, maybe?

FIXME

License

Copyright © 2017 FIXME

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 100.0%