Sha256: a8cb004d9c42329a8d8bdcbbbe29c0bf39081464bd9a67c42f55d95fd3e7d672
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
== Installation If you haven't already, {Download and Install NuoDB}[http://nuodb.com/download] The distribution contains one package, you can install it using the following command: gem install nuodb == Summary The following is an example of how to use the NuoDB Ruby driver: 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 == Support Having trouble with ruby-nuodb? Contact support by email (mailto:support@nuodb.com) and we’ll help you sort it out, or {open an issue at the Github issue tracker}[http://github.com/nuodb/ruby-nuodb/issues]. == License The driver is distributed with an BSD 2-clause license: :include: LICENSE == Also see * {Ruby/NuoDB Interface Rdoc}[http://nuodb.github.io/ruby-nuodb/site/] * {NuoDB Community Forum}[http://www.nuodb.com/community/forum.php] * {NuoDB Online Documentation}[http://doc.nuodb.com/display/doc/NuoDB+Online+Documentation] == Credits The following developers contributed to this project: :include: AUTHORS
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nuodb-2.0.3 | rdoc/GETTING_STARTED.rdoc |