Module holding the DataObjects support for Sequel. DataObjects is a ruby library with a standard API for accessing databases.
The DataObjects adapter currently supports PostgreSQL, MySQL, and SQLite:
Sequel.connect('do:sqlite3::memory:')
Sequel.connect('do:postgres://user:password@host/database')
Sequel.connect('do:mysql://user:password@host/database')
Contains procs keyed on subadapter type that extend the given database object so it supports the correct database type.
Wrapper for require that raises AdapterNotFound if driver could not be loaded
# File lib/sequel/adapters/do.rb, line 19 def self.load_driver(path) require path rescue LoadError => e raise AdapterNotFound, e.message end
Generated with the Darkfish Rdoc Generator 2.