New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nuodb

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuodb

  • 2.0.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

== NuoDB Ruby Interface

{Build Status}[http://travis-ci.org/nuodb/ruby-nuodb] {Dependency Status}[https://gemnasium.com/nuodb/ruby-nuodb] {}[https://codeclimate.com/github/nuodb/ruby-nuodb]

== Description

This is the official Ruby Gem for {NuoDB}[http://www.nuodb.com/]. 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}[https://github.com/nuodb/ruby-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}[http://nuodb.com/download-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}[http://nuodb.github.io/ruby-nuodb/site/files/rdoc/GETTING_STARTED_rdoc.html] for information about contributing to the NuoDB Ruby Adapter.

FAQs

Package last updated on 14 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc