module Sequel

  1. lib/sequel/ast_transformer.rb
  2. lib/sequel/core.rb
  3. lib/sequel/database.rb
  4. lib/sequel/dataset.rb
  5. lib/sequel/deprecated.rb
  6. lib/sequel/exceptions.rb
  7. lib/sequel/model.rb
  8. lib/sequel/sql.rb
  9. lib/sequel/timezones.rb
  10. lib/sequel/version.rb
  11. lib/sequel/database/connecting.rb
  12. lib/sequel/database/dataset.rb
  13. lib/sequel/database/dataset_defaults.rb
  14. lib/sequel/database/features.rb
  15. lib/sequel/database/logging.rb
  16. lib/sequel/database/misc.rb
  17. lib/sequel/database/query.rb
  18. lib/sequel/database/schema_generator.rb
  19. lib/sequel/database/schema_methods.rb
  20. lib/sequel/database/transactions.rb
  21. lib/sequel/dataset/actions.rb
  22. lib/sequel/dataset/features.rb
  23. lib/sequel/dataset/graph.rb
  24. lib/sequel/dataset/misc.rb
  25. lib/sequel/dataset/mutation.rb
  26. lib/sequel/dataset/prepared_statements.rb
  27. lib/sequel/dataset/query.rb
  28. lib/sequel/dataset/sql.rb
  29. lib/sequel/model/associations.rb
  30. lib/sequel/model/base.rb
  31. lib/sequel/model/dataset_module.rb
  32. lib/sequel/model/default_inflections.rb
  33. lib/sequel/model/errors.rb
  34. lib/sequel/model/exceptions.rb
  35. lib/sequel/model/inflections.rb
  36. lib/sequel/model/plugins.rb
  37. lib/sequel/extensions/migration.rb
  38. show all
Parent: migration.rb

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

Included modules

  1. SQL::Constants

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 Dates and DateTimes by default, so 01/02/03 is interpreted at January 2nd, 2003, and 12/13/99 is interpreted as December 13, 1999. You can override this to treat those dates as January 2nd, 0003 and December 13, 0099, respectively, by:

Sequel.convert_two_digit_years = false
datetime_class [RW]

Sequel can use either Time or DateTime for times returned from the database. It defaults to Time. To change it to DateTime:

Sequel.datetime_class = DateTime

For ruby versions less than 1.9.2, Time has a limited range (1901 to 2038), so if you use datetimes out of that range, you need to switch to DateTime. Also, before 1.9.2, Time can only handle local and UTC times, not other timezones. Note that Time and DateTime objects have a different API, and in cases where they implement the same methods, they often implement them differently (e.g. + using seconds on Time and days on DateTime).

Public Class methods

Model (source)

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 the Database in source 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
[show source]
# 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
condition_specifier? (obj)

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
[show source]
# 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
connect (*args, &block)

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

[show source]
# File lib/sequel/core.rb, line 94
def self.connect(*args, &block)
  Database.connect(*args, &block)
end
convert_exception_class (exception, klass)

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.

[show source]
# 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
core_extensions? ()

Assume the core extensions are not loaded by default, if the core_extensions extension is loaded, this will be overridden.

[show source]
# File lib/sequel/core.rb, line 100
def self.core_extensions?
  false
end
extension (*extensions)

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)
[show source]
# File lib/sequel/core.rb, line 125
def self.extension(*extensions)
  extensions.each{|e| Kernel.require "sequel/extensions/#{e}"}
end
identifier_input_method= (value)

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.

[show source]
# File lib/sequel/core.rb, line 140
def self.identifier_input_method=(value)
  Database.identifier_input_method = value
end
identifier_output_method= (value)

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.

[show source]
# File lib/sequel/core.rb, line 156
def self.identifier_output_method=(value)
  Database.identifier_output_method = value
end
inflections ()

Yield the Inflections module if a block is given, and return the Inflections module.

[show source]
# File lib/sequel/model/inflections.rb, line 4
def self.inflections
  yield Inflections if block_given?
  Inflections
end
json_parser_error_class ()

The exception classed raised if there is an error parsing JSON. This can be overridden to use an alternative json implementation.

[show source]
# File lib/sequel/core.rb, line 162
def self.json_parser_error_class
  JSON::ParserError
end
migration (&block)

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.

[show source]
# File lib/sequel/extensions/migration.rb, line 280
def self.migration(&block)
  MigrationDSL.create(&block)
end
object_to_json (obj, *args)

Convert given object to json and return the result. This can be overridden to use an alternative json implementation.

[show source]
# File lib/sequel/core.rb, line 168
def self.object_to_json(obj, *args)
  obj.to_json(*args)
end
parse_json (json)

Parse the string as JSON and return the result. This can be overridden to use an alternative json implementation.

[show source]
# File lib/sequel/core.rb, line 174
def self.parse_json(json)
  JSON.parse(json, :create_additions=>false)
end
quote_identifiers= (value)

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
[show source]
# File lib/sequel/core.rb, line 182
def self.quote_identifiers=(value)
  Database.quote_identifiers = value
end
recursive_map (array, converter)

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.

[show source]
# 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 (files, subdir=nil)

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.

[show source]
# 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
single_threaded= (value)

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
[show source]
# File lib/sequel/core.rb, line 214
def self.single_threaded=(value)
  @single_threaded = value
  Database.single_threaded = value
end
split_symbol (sym)

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.

[show source]
# 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
string_to_date (string)

Converts the given string into a Date object.

Sequel.string_to_date('2010-09-10') # Date.civil(2010, 09, 10)
[show source]
# 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
string_to_datetime (string)

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)
[show source]
# 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
string_to_time (string)

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'
[show source]
# 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
synchronize (&block)

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.

[show source]
# File lib/sequel/core.rb, line 288
def self.synchronize(&block)
  @single_threaded ? yield : @data_mutex.synchronize(&block)
end
transaction (dbs, opts=OPTS, &block)

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).

[show source]
# 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
version ()

The version of Sequel you are using, as a string (e.g. “2.11.0”)

[show source]
# File lib/sequel/version.rb, line 15
def self.version
  VERSION
end
virtual_row (&block)

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)
[show source]
# 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