tree: bfd356692e3fcc51eec7bec81cc24149652723c2 [path history] [tgz]
  1. dependency-check/
  2. lib/
  3. test/
  4. .gitignore
  5. Gemfile
  6. Rakefile
  7. README.md
  8. red-adbc.gemspec
ruby/README.md

Red ADBC

Red ADBC is the Ruby bindings of ADBC GLib.

How to install

$ gem install red-adbc

How to use

require "adbc"

ADBC::Database.open(driver: "adbc_driver_sqlite",
                    uri: ":memory:") do |database|
  database.connect do |connection|
    puts(connection.query("SELECT 1"))
  end
end