cr-corm

SQL Statement Builder

Corm

SQL Statement Builder (currently supporting PostgreSQL)

Installation

Add this to your application's shard.yml:

dependencies:
  corm:
    github: gdotdesign/corm

Features

TODO: Finalize feature list

Statements:

  • SELECT
  • INNER_JOIN
  • GROUP BY
  • WHERE
  • INSERT
  • CREATE
  • DELETE
  • OUTER_JOIN
  • LIMIT
  • ORDER BY
  • ALTER TABLE
  • CREATE TABLE

Functions:

  • MAX
  • MIN
  • COUNT
  • SUM
  • AVG
  • ROUND
  • DISTINCT

Helpers:

  • .columns

Usage

TODO: Write more useful documentation

require "corm"

# Simple query without type casting
Corm.table("users")
    .select("id", "name")
    .where({ "id" => 23 })
    .one
# [[23 : PG::PGValue, "Some User" : PG::PGValue ]]

# Simple query with type casting
Corm.table("users")
    .select("id", "name")
    .where({ "id" => 23 })
    .one({Int32, String})
# {23 : Int32, "Some User" : String}

Development

There is no special development dependencies other then PostgreSQL so far.

Contributing

  1. Fork it ( https://github.com/gdotdesign/corm/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • gdotdesign Szikszai Gusztáv - creator, maintainer
Repository

cr-corm

Owner
Statistic
  • 5
  • 0
  • 0
  • 0
  • 2
  • over 6 years ago
  • July 13, 2016
License

MIT License

Links
Synced at

Sat, 18 May 2024 21:39:27 GMT

Languages