Top level module for Sequel
There are some module methods that are added via metaprogramming, one for each supported adapter. For example:
DB = Sequel.sqlite # Memory database DB = Sequel.sqlite('blog.db') DB = Sequel.postgres('database_name', :user=>'user', :password=>'password', :host=>'host', :port=>5432, :max_connections=>10)
If a block is given to these methods, it is passed the opened Database object, which is closed (disconnected) when the block exits, just like a block passed to connect. For example:
Sequel.sqlite('blog.db'){|db| puts db[:users].count}
For a more expanded introduction, see the README For a quicker introduction, see the cheat sheet
Adds the Sequel::Migration and Sequel::Migrator classes, which allow the user to easily group schema changes and migrate the database to a newer version or revert to a previous version.
To load the extension:
Sequel.extension :migration
Methods
Public Class
- Model
- cache_anonymous_models
- condition_specifier?
- connect
- convert_exception_class
- convert_two_digit_years
- core_extensions?
- datetime_class
- extension
- identifier_input_method=
- identifier_output_method=
- inflections
- json_parser_error_class
- migration
- object_to_json
- parse_json
- quote_identifiers=
- recursive_map
- require
- single_threaded=
- split_symbol
- string_to_date
- string_to_datetime
- string_to_time
- synchronize
- transaction
- version
- virtual_row
Included modules
Classes and Modules
- Sequel::Deprecation
- Sequel::Inflections
- Sequel::Plugins
- Sequel::SQL
- Sequel::Schema
- Sequel::Timezones
- Sequel::ASTTransformer
- Sequel::AdapterNotFound
- Sequel::BasicObject
- Sequel::BeforeHookFailed
- Sequel::CheckConstraintViolation
- Sequel::ConnectionPool
- Sequel::ConstraintViolation
- Sequel::Database
- Sequel::DatabaseConnectionError
- Sequel::DatabaseDisconnectError
- Sequel::DatabaseError
- Sequel::Dataset
- Sequel::Error
- Sequel::ForeignKeyConstraintViolation
- Sequel::HookFailed
- Sequel::IntegerMigrator
- Sequel::InvalidOperation
- Sequel::InvalidValue
- Sequel::LiteralString
- Sequel::Migration
- Sequel::MigrationAlterTableReverser
- Sequel::MigrationDSL
- Sequel::MigrationReverser
- Sequel::Migrator
- Sequel::Model
- Sequel::NoExistingObject
- Sequel::NoMatchingRow
- Sequel::NotNullConstraintViolation
- Sequel::PoolTimeout
- Sequel::Qualifier
- Sequel::Rollback
- Sequel::SQLTime
- Sequel::SerializationFailure
- Sequel::ShardedSingleConnectionPool
- Sequel::ShardedThreadedConnectionPool
- Sequel::SimpleMigration
- Sequel::SingleConnectionPool
- Sequel::ThreadedConnectionPool
- Sequel::TimestampMigrator
- Sequel::UnbindDuplicate
- Sequel::Unbinder
- Sequel::UndefinedAssociation
- Sequel::UniqueConstraintViolation
- Sequel::ValidationFailed
Constants
ADAPTER_MAP | = | {} |
Hash of adapters that have been used. The key is the adapter scheme symbol, and the value is the Database subclass. |
|
BeforeHookFailed | = | HookFailed |
Alias for HookFailed, kept for backwards compatibility |
|
COLUMN_REF_RE1 | = | /\A((?:(?!__).)+)__((?:(?!___).)+)___(.+)\z/.freeze | ||
COLUMN_REF_RE2 | = | /\A((?:(?!___).)+)___(.+)\z/.freeze | ||
COLUMN_REF_RE3 | = | /\A((?:(?!__).)+)__(.+)\z/.freeze | ||
DATABASES | = | [] |
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. |
|
DEFAULT_INFLECTIONS_PROC | = | proc do plural(/$/, 's') plural(/s$/i, 's') plural(/(alias|(?:stat|octop|vir|b)us)$/i, '\1es') plural(/(buffal|tomat)o$/i, '\1oes') plural(/([ti])um$/i, '\1a') plural(/sis$/i, 'ses') plural(/(?:([^f])fe|([lr])f)$/i, '\1\2ves') plural(/(hive)$/i, '\1s') plural(/([^aeiouy]|qu)y$/i, '\1ies') plural(/(x|ch|ss|sh)$/i, '\1es') plural(/(matr|vert|ind)ix|ex$/i, '\1ices') plural(/([m|l])ouse$/i, '\1ice') singular(/s$/i, '') singular(/([ti])a$/i, '\1um') singular(/(analy|ba|cri|diagno|parenthe|progno|synop|the)ses$/i, '\1sis') singular(/([^f])ves$/i, '\1fe') singular(/([h|t]ive)s$/i, '\1') singular(/([lr])ves$/i, '\1f') singular(/([^aeiouy]|qu)ies$/i, '\1y') singular(/(m)ovies$/i, '\1ovie') singular(/(x|ch|ss|sh)es$/i, '\1') singular(/([m|l])ice$/i, '\1ouse') singular(/buses$/i, 'bus') singular(/oes$/i, 'o') singular(/shoes$/i, 'shoe') singular(/(alias|(?:stat|octop|vir|b)us)es$/i, '\1') singular(/(vert|ind)ices$/i, '\1ex') singular(/matrices$/i, 'matrix') irregular('person', 'people') irregular('man', 'men') irregular('child', 'children') irregular('sex', 'sexes') irregular('move', 'moves') irregular('quiz', 'quizzes') irregular('testis', 'testes') uncountable(%w(equipment information rice money species series fish sheep news)) end |
Proc that is instance evaled to create the default inflections for both the model inflector and the inflector extension. |
|
MAJOR | = | 4 |
The major version of Sequel. Only bumped for major changes. |
|
MINOR | = | 4 |
The minor version of Sequel. Bumped for every non-patch level release, generally around once a month. |
|
OPTS | = | {}.freeze |
Frozen hash used as the default options hash for most options. |
|
TINY | = | 0 |
The tiny version of Sequel. Usually 0, only bumped for bugfix releases that fix regressions from previous versions. |
|
VERSION | = | [MAJOR, MINOR, TINY].join('.') |
The version of Sequel you are using, as a string (e.g. “2.11.0”) |
Attributes
cache_anonymous_models | [RW] |
Whether to cache the anonymous models created by Sequel::Model(). This is required for reloading them correctly (avoiding the superclass mismatch). True by default for backwards compatibility. |
convert_two_digit_years | [RW] |
Sequel converts two digit years in
Sequel.convert_two_digit_years = false |
datetime_class | [RW] |
Sequel can use either Sequel.datetime_class = DateTime For ruby versions less than 1.9.2, |
Public Class methods
Lets you create a Model subclass with its
dataset already set. source
should be an instance of one of
the following classes:
- Database
-
Sets the database for this model to
source
. Generally only useful when subclassing directly from the returned class, where the name of the subclass sets the table name (which is combined with theDatabase
insource
to create the dataset to use) - Dataset
-
Sets the dataset for this model to
source
. - other
-
Sets the table name for this model to
source
. The class will use the default database for model classes in order to create the dataset.
The purpose of this method is to set the dataset/database automatically for a model class, if the table name doesn’t match the implicit name. This is neater than using set_dataset inside the class, doesn’t require a bogus query for the schema.
# Using a symbol class Comment < Sequel::Model(:something) table_name # => :something end # Using a dataset class Comment < Sequel::Model(DB1[:something]) dataset # => DB1[:something] end # Using a database class Comment < Sequel::Model(DB1) dataset # => DB1[:comments] end
# File lib/sequel/model.rb, line 37 def self.Model(source) if cache_anonymous_models && (klass = Sequel.synchronize{Model::ANONYMOUS_MODEL_CLASSES[source]}) return klass end klass = if source.is_a?(Database) c = Class.new(Model) c.db = source c else Class.new(Model).set_dataset(source) end Sequel.synchronize{Model::ANONYMOUS_MODEL_CLASSES[source] = klass} if cache_anonymous_models klass end
Returns true if the passed object could be a specifier of conditions, false otherwise. Currently, Sequel considers hashes and arrays of two element arrays as condition specifiers.
Sequel.condition_specifier?({}) # => true Sequel.condition_specifier?([[1, 2]]) # => true Sequel.condition_specifier?([]) # => false Sequel.condition_specifier?([1]) # => false Sequel.condition_specifier?(1) # => false
# File lib/sequel/core.rb, line 62 def self.condition_specifier?(obj) case obj when Hash true when Array !obj.empty? && !obj.is_a?(SQL::ValueList) && obj.all?{|i| i.is_a?(Array) && (i.length == 2)} else false end end
Creates a new database object based on the supplied connection string and optional arguments. The specified scheme determines the database class used, and the rest of the string specifies the connection options. For example:
DB = Sequel.connect('sqlite:/') # Memory database DB = Sequel.connect('sqlite://blog.db') # ./blog.db DB = Sequel.connect('sqlite:///blog.db') # /blog.db DB = Sequel.connect('postgres://user:password@host:port/database_name') DB = Sequel.connect('sqlite:///blog.db', :max_connections=>10)
If a block is given, it is passed the opened Database
object,
which is closed when the block exits. For example:
Sequel.connect('sqlite://blog.db'){|db| puts db[:users].count}
For details, see the “Connecting to a Database” guide To set up a master/slave or sharded database connection, see the “Master/Slave Databases and Sharding” guide
# File lib/sequel/core.rb, line 94 def self.connect(*args, &block) Database.connect(*args, &block) end
Convert the exception
to the given class. The given class
should be Sequel::Error
or a subclass. Returns an instance of
klass
with the message and backtrace of
exception
.
# File lib/sequel/core.rb, line 107 def self.convert_exception_class(exception, klass) return exception if exception.is_a?(klass) e = klass.new("#{exception.class}: #{exception.message}") e.wrapped_exception = exception e.set_backtrace(exception.backtrace) e end
Assume the core extensions are not loaded by default, if the core_extensions extension is loaded, this will be overridden.
# File lib/sequel/core.rb, line 100 def self.core_extensions? false end
Load all Sequel extensions given. Extensions are
just files that exist under sequel/extensions
in the load
path, and are just required. Generally, extensions modify the behavior of
Database
and/or Dataset
, but Sequel ships with some extensions that modify other
classes that exist for backwards compatibility. In some cases, requiring an
extension modifies classes directly, and in others, it just loads a module
that you can extend other classes with. Consult the documentation for each
extension you plan on using for usage.
Sequel.extension(:schema_dumper) Sequel.extension(:pagination, :query)
# File lib/sequel/core.rb, line 125 def self.extension(*extensions) extensions.each{|e| Kernel.require "sequel/extensions/#{e}"} end
Set the method to call on identifiers going into the database. This affects the literalization of identifiers by calling this method on them before they are input. Sequel upcases identifiers in all SQL strings for most databases, so to turn that off:
Sequel.identifier_input_method = nil
to downcase instead:
Sequel.identifier_input_method = :downcase
Other String instance methods work as well.
# File lib/sequel/core.rb, line 140 def self.identifier_input_method=(value) Database.identifier_input_method = value end
Set the method to call on identifiers coming out of the database. This affects the literalization of identifiers by calling this method on them when they are retrieved from the database. Sequel downcases identifiers retrieved for most databases, so to turn that off:
Sequel.identifier_output_method = nil
to upcase instead:
Sequel.identifier_output_method = :upcase
Other String instance methods work as well.
# File lib/sequel/core.rb, line 156 def self.identifier_output_method=(value) Database.identifier_output_method = value end
Yield the Inflections module if a block is given, and return the Inflections module.
# File lib/sequel/model/inflections.rb, line 4 def self.inflections yield Inflections if block_given? Inflections end
The exception classed raised if there is an error parsing JSON. This can be overridden to use an alternative json implementation.
# File lib/sequel/core.rb, line 162 def self.json_parser_error_class JSON::ParserError end
The preferred method for writing Sequel migrations, using a DSL:
Sequel.migration do up do create_table(:artists) do primary_key :id String :name end end down do drop_table(:artists) end end
Designed to be used with the Migrator
class, part of the
migration
extension.
# File lib/sequel/extensions/migration.rb, line 280 def self.migration(&block) MigrationDSL.create(&block) end
Convert given object to json and return the result. This can be overridden to use an alternative json implementation.
# File lib/sequel/core.rb, line 168 def self.object_to_json(obj, *args) obj.to_json(*args) end
Parse the string as JSON and return the result. This can be overridden to use an alternative json implementation.
# File lib/sequel/core.rb, line 174 def self.parse_json(json) JSON.parse(json, :create_additions=>false) end
Set whether to quote identifiers for all databases by default. By default, Sequel quotes identifiers in all SQL strings, so to turn that off:
Sequel.quote_identifiers = false
# File lib/sequel/core.rb, line 182 def self.quote_identifiers=(value) Database.quote_identifiers = value end
Convert each item in the array to the correct type, handling multi-dimensional arrays. For each element in the array or subarrays, call the converter, unless the value is nil.
# File lib/sequel/core.rb, line 189 def self.recursive_map(array, converter) array.map do |i| if i.is_a?(Array) recursive_map(i, converter) elsif i converter.call(i) end end end
Require all given files
which should be in the same or a
subdirectory of this file. If a subdir
is given, assume all
files
are in that subdir. This is used to ensure that the
files loaded are from the same version of Sequel
as this file.
# File lib/sequel/core.rb, line 203 def self.require(files, subdir=nil) Array(files).each{|f| super("#{File.dirname(__FILE__).untaint}/#{"#{subdir}/" if subdir}#{f}")} end
Set whether Sequel is being used in single threaded mode. By default, Sequel uses a thread-safe connection pool, which isn’t as fast as the single threaded connection pool, and also has some additional thread safety checks. If your program will only have one thread, and speed is a priority, you should set this to true:
Sequel.single_threaded = true
# File lib/sequel/core.rb, line 214 def self.single_threaded=(value) @single_threaded = value Database.single_threaded = value end
Splits the symbol into three parts. Each part will either be a string or nil.
For columns, these parts are the table, column, and alias. For tables, these parts are the schema, table, and alias.
# File lib/sequel/core.rb, line 228 def self.split_symbol(sym) case s = sym.to_s when COLUMN_REF_RE1 [$1, $2, $3] when COLUMN_REF_RE2 [nil, $1, $2] when COLUMN_REF_RE3 [$1, $2, nil] else [nil, s, nil] end end
Converts the given string
into a Date
object.
Sequel.string_to_date('2010-09-10') # Date.civil(2010, 09, 10)
# File lib/sequel/core.rb, line 244 def self.string_to_date(string) begin Date.parse(string, Sequel.convert_two_digit_years) rescue => e raise convert_exception_class(e, InvalidValue) end end
Converts the given string
into a Time
or
DateTime
object, depending on the value of
Sequel.datetime_class
.
Sequel.string_to_datetime('2010-09-10 10:20:30') # Time.local(2010, 09, 10, 10, 20, 30)
# File lib/sequel/core.rb, line 256 def self.string_to_datetime(string) begin if datetime_class == DateTime DateTime.parse(string, convert_two_digit_years) else datetime_class.parse(string) end rescue => e raise convert_exception_class(e, InvalidValue) end end
Converts the given string
into a Sequel::SQLTime
object.
v = Sequel.string_to_time('10:20:30') # Sequel::SQLTime.parse('10:20:30') DB.literal(v) # => '10:20:30'
# File lib/sequel/core.rb, line 272 def self.string_to_time(string) begin SQLTime.parse(string) rescue => e raise convert_exception_class(e, InvalidValue) end end
Unless in single threaded mode, protects access to any mutable global data structure in Sequel. Uses a non-reentrant mutex, so calling code should be careful.
# File lib/sequel/core.rb, line 288 def self.synchronize(&block) @single_threaded ? yield : @data_mutex.synchronize(&block) end
Uses a transaction on all given databases with the given options. This:
Sequel.transaction([DB1, DB2, DB3]){...}
is equivalent to:
DB1.transaction do DB2.transaction do DB3.transaction do ... end end end
except that if Sequel::Rollback is raised by the block, the transaction is rolled back on all databases instead of just the last one.
Note that this method cannot guarantee that all databases will commit or rollback. For example, if DB3 commits but attempting to commit on DB2 fails (maybe because foreign key checks are deferred), there is no way to uncommit the changes on DB3. For that kind of support, you need to have two-phase commit/prepared transactions (which Sequel supports on some databases).
# File lib/sequel/core.rb, line 323 def self.transaction(dbs, opts=OPTS, &block) unless opts[:rollback] rescue_rollback = true opts = opts.merge(:rollback=>:reraise) end pr = dbs.reverse.inject(block){|bl, db| proc{db.transaction(opts, &bl)}} if rescue_rollback begin pr.call rescue Sequel::Rollback nil end else pr.call end end
The version of Sequel you are using, as a string (e.g. “2.11.0”)
# File lib/sequel/version.rb, line 15 def self.version VERSION end
If the supplied block takes a single argument, yield an
SQL::VirtualRow
instance to the block argument. Otherwise,
evaluate the block in the context of a SQL::VirtualRow
instance.
Sequel.virtual_row{a} # Sequel::SQL::Identifier.new(:a) Sequel.virtual_row{|o| o.a{}} # Sequel::SQL::Function.new(:a)
# File lib/sequel/core.rb, line 347 def self.virtual_row(&block) vr = VIRTUAL_ROW case block.arity when -1, 0 vr.instance_exec(&block) else block.call(vr) end end