Skip to content

czarlos/ruby-nuodb

Repository files navigation

Ruby/NuoDB Interface Build Status Dependency Status

This is the official Ruby Gem for NuoDB. It wraps the NuoDB C++ API, providing a natural API for Ruby.

To use NuoDB with Rails you will also want the ActiveRecord NuoDB Adapter

Note: At this time the Ruby/NuoDB Interface does not support Windows.

Getting Started

  1. If you haven't already, Download and Install NuoDB

  2. Install the gem

    gem install nuodb
    
  3. Use NuoDB in Ruby

    require "nuodb"
    
    conn = NuoDB::Connection.new(:database => 'test@localhost', :username => 'dba', :password => 'goalie', :schema => 'hockey')
    stmt = conn.statement
    stmt.execute("SELECT * FROM hockey")
    stmt.results.each do |res|
        puts res.inspect
    end
    

More Information

Contributing

See Contribution for information about contributing to the Ruby ActiveRecord NuoDB Adapter.

githalytics.com alpha