module Sequel::DataObjects
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')
Constants
- DATABASE_SETUP
Contains procs keyed on sub adapter type that extend the given database object so it supports the correct database type.