Sha256: 01f040b4ff41f609c3b0740b262425890c93cb1a8641004ee3fca966839817f4
Contents?: true
Size: 774 Bytes
Versions: 3
Compression:
Stored size: 774 Bytes
Contents
module Sequel # Hash of adapters that have been used. The key is the adapter scheme # symbol, and the value is the Database subclass. ADAPTER_MAP = {} # Array of all databases to which Sequel has connected. If you are # developing an application that can connect to an arbitrary number of # databases, delete the database objects from this or they will not get # garbage collected. DATABASES = [] # A Database object represents a virtual connection to a database. # The Database class is meant to be subclassed by database adapters in order # to provide the functionality needed for executing queries. class Database end require(%w"connecting dataset dataset_defaults logging misc query schema_generator schema_methods", 'database') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sequel-3.45.0 | lib/sequel/database.rb |
sequel-3.44.0 | lib/sequel/database.rb |
sequel-3.43.0 | lib/sequel/database.rb |