Popularity
1.1
Declining
Activity
0.0
Stable
0
2
1

Programming language: Crystal
Tags: Framework Components    

kemal-monetdb alternatives and similar shards

Based on the "Framework Components" category.
Alternatively, view kemal-monetdb alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of kemal-monetdb or a related project?

Add another 'Framework Components' Shard

README

kemal-monetdb

Kemal Data connnection layer for MonetDB

This is currently experimental.

Installation

Add this to your application's shard.yml:

dependencies:
  kemal-monetdb:
    github: puppetpies/kemal-monetdb

Usage

require "kemal"
require "kemal-monetdb"

CONN_OPTS = {
  "host" => "127.0.0.1",
  "user" => "monetdb",
  "password" => "monetdb",
  "port" => "50000",
  "db" => "test"
}

monetdb_connect CONN_OPTS

# Make sure to yield `env`.
get "/" do |env|
  env.content_type = "application/json"
  users = conn.query("SELECT * FROM users")
  # Release the connection after you are done with exec
  release
  # Renders the users as JSON
  users
end

Development

TODO: Test / Implement the connection pool as in kemal-mysql

Contributing

  1. Fork it ( https://github.com/puppetpies/kemal-monetdb/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