Sequel’s Core Extensions
Background
Historically, Sequel added methods to many of the core classes, and usage of those methods was the primary and recommended way to use Sequel. For example:
DB[:table].select(:column.cast(Integer)). # Symbol#cast where(:column.like('A%')). # Symbol#like order({1=>2}.case(0, :a)) # Hash#case
While Sequel never overrode any methods defined by ruby, it is possible that other libraries could define the same methods that Sequel defines, which could cause problems. Also, some rubyists do not like using libraries that add methods to the core classes.
Alternatives for the core extension methods where added to Sequel, so the query above could be written as:
DB[:table].select(Sequel.cast(:column, Integer)). where(Sequel.like(:column, 'A%')). order(Sequel.case({1=>2}, 0, :a))
Almost all of the core extension methods have a replacement on the Sequel module. So it is now up to the user which style to use. Using the methods on the Sequel module results in slightly more verbose code, but allows the code to work without modifications to the core classes.
Issues
There is no recommendation on whether the core_extensions should be used or not. It is very rare that any of the methods added by core_extensions actually causes a problem, but some of them can make it more difficult to find other problems. For example, if you type:
do_something if value | other_value
while meaning to type:
do_something if value || other_value
and value is a Symbol, instead of a
NoMethodError being raised because Symbol#| is not implemented by default,
value | other_value
will return a Sequel expression object, which if
will evaluate as true, and do_something will be called.
Usage
All of Sequel’s extensions to the core classes are stored in Sequel’s core_extensions extension, which you can load via:
Sequel.extension :core_extensions
No Internal Dependency
Sequel has no internal dependency on the core extensions. This includes Sequel's core, Sequel::Model, and all plugins and extensions that ship with Sequel. However, it is possible that external plugins and extensions will depend on the core extensions. Such plugins and extensions should be updated so that they no longer depend on the core extensions.
Core Extension Methods
This section will briefly describe all of the methods added to the core classes, and what the alternative method is that doesn’t require the core extensions.
Symbol & String
as
Sequel::SQL::AliasMethods#as and Sequel::SQL::AliasMethods#as return Sequel aliased expressions using the provided alias:
:a.as(:b) # SQL: a AS b 'a'.as(:b) # SQL: 'a' AS b
Alternative: Sequel.as:
Sequel.as(:a, :b)
cast
Sequel::SQL::CastMethods#cast and Sequel::SQL::CastMethods#cast return Sequel cast expressions for typecasting in the database:
:a.cast(Integer) # SQL: CAST(a AS integer) 'a'.cast(Integer) # SQL: CAST('a' AS integer)
Alternative: Sequel.cast:
Sequel.cast(:a, Integer)
cast_numeric
Sequel::SQL::CastMethods#cast_numeric and Sequel::SQL::CastMethods#cast_numeric return Sequel cast expressions for typecasting in the database, defaulting to integers, where the returned expression is treated as an numeric value:
:a.cast_numeric # SQL: CAST(a AS integer) 'a'.cast_numeric(Float) # SQL: CAST('a' AS double precision)
Alternative: Sequel.cast_numeric:
Sequel.cast_numeric(:a)
cast_string
Sequel::SQL::CastMethods#cast_string and Sequel::SQL::CastMethods#cast_string return Sequel cast expressions for typecasting in the database, defaulting to strings, where the returned expression is treated as a string value:
:a.cast_string # SQL: CAST(a AS varchar(255)) 'a'.cast_string(:text) # SQL: CAST('a' AS text)
Alternative: Sequel.cast_string:
Sequel.cast_string(:a)
Symbol
identifier
Symbol#identifier wraps the symbol in a single identifier that will not be split. By default, Sequel will split symbols with double or triple underscores to do qualifying and aliasing.
:table__column.identifier # SQL: table__column
Alternative: Sequel.identifier:
Sequel.identifier(:table__column)
asc
Sequel::SQL::OrderMethods#asc is used to define an ascending order on a column. It exists mostly for consistency with desc, since ascending is the default order:
:a.asc # SQL: a ASC
Alternative: Sequel.asc:
Sequel.asc(:a)
desc
Sequel::SQL::OrderMethods#desc is used to defined a descending order on a column. The returned value is usually passed to one of the dataset order methods.
:a.desc # SQL: a DESC
Alternative: Sequel.desc:
Sequel.desc(:a)
+, -, *, /
The standard mathematical operators are defined on Symbol, and return a Sequel numeric expression object representing the operation:
:a + :b # SQL: a + b :a - :b # SQL: a - b :a * :b # SQL: a * b :a / :b # SQL: a / b
Alternatives:
Sequel.+(:a, :b) Sequel.-(:a, :b) Sequel.*(:a, :b) Sequel./(:a, :b)
*
The * operator is overloaded on Symbol such that if it is called with no arguments, it represents a selection of all columns in the table:
:a.* # SQL: a.*
Alternative: Sequel.expr.*:
Sequel.expr(:a).*
qualify
Sequel::SQL::QualifyingMethods#qualify qualifies the identifier (e.g. a column) with a another identifier (e.g. a table):
:column.qualify(:table) # SQL: table.column
Alternative: Sequel.qualify:
Sequel.qualify(:table, :column)
Note the reversed order of the arguments. For the Sequel::SQL::QualifyingMethods#qualify method, the argument is the qualifier, while for Sequel.qualify, the qualifier is the first argument.
like
Sequel::SQL::StringMethods#like returns a case sensitive LIKE expression between the identifier and the given argument:
:a.like('b%') # SQL: a LIKE 'b%'
Alternative: Sequel.like:
Sequel.like(:a, 'b%')
like
Sequel::SQL::StringMethods#ilike returns a case insensitive LIKE expression between the identifier and the given argument:
:a.ilike('b%') # SQL: a ILIKE 'b%'
Alternative: Sequel.ilike:
Sequel.ilike(:a, 'b%')
sql_subscript
Sequel::SQL::SubscriptMethods#sql_subscript returns a Sequel expression representing an SQL array access:
:a.sql_subscript(1) # SQL: a[1]
Alternative: Sequel.subscript:
Sequel.subscript(:a, 1)
extract
Sequel::SQL::ComplexExpressionMethods#extract does a datetime part extraction from the receiver:
:a.extract(:year) # SQL: extract(year FROM a)
Alternative: Sequel.extract:
Sequel.extract(:year, :a)
Note the reversed order of the arguments. In Sequel::SQL::ComplexExpressionMethods#extract, the datetime part is the argument, while in Sequel.extract, the datetime part is the first argument.
sql_boolean, sql_number, sql_string
These Symbol methods are used to force the treating of the object as a specific SQL type, instead of as a general SQL type. For example:
:a.sql_boolean + 1 # NoMethodError :a.sql_number << 1 # SQL: a << 1 :a.sql_string + 'a' # SQL: a || 'a'
Alternative: Sequel.expr:
Sequel.expr(:a).sql_boolean Sequel.expr(:a).sql_number Sequel.expr(:a).sql_string
sql_function
Symbol#sql_function returns an SQL function call expression object:
:now.sql_function # SQL: now() :sum.sql_function(:a) # SQL: sum(a) :concat.sql_function(:a, :b) # SQL: concat(a, b)
Alternative: Sequel.function:
Sequel.function(:sum, :a)
String
lit
String#lit creates a literal string, using placeholders if any arguments are given. Literal strings are not escaped, they are treated as SQL code, not as an SQL string:
'a'.lit # SQL: a '"a" = ?'.lit(1) # SQL: "a" = 1
Alternative: Sequel.lit:
Sequel.lit('a')
to_sequel_blob
String#to_sequel_blob returns the string wrapper in Sequel blob object. Often blobs need to be handled differently than regular strings by the database adapters.
"a\0".to_sequel_blob # SQL: X'6100'
Alternative: Sequel.blob:
Sequel.blob("a\0")
Hash, Array, & Symbol
~
Array#~, Hash#~, and Symbol#~ treat the receiver as a conditions specifier, not matching all of the conditions:
~{:a=>1, :b=>[2, 3]} # SQL: a != 1 OR b NOT IN (2, 3) ~[[:a, 1], [:b, [1, 2]]] # SQL: a != 1 OR b NOT IN (1, 2)
Alternative: Sequel.~:
Sequel.~(:a=>1, :b=>[2, 3])
Hash & Array
case
Array#case and Hash#case return an SQL CASE expression, where the keys are conditions and the values are results:
{{:a=>[2,3]}=>1}.case(0) # SQL: CASE WHEN a IN (2, 3) THEN 1 ELSE 0 END [[{:a=>[2,3]}, 1]].case(0) # SQL: CASE WHEN a IN (2, 3) THEN 1 ELSE 0 END
Alternative: Sequel.case:
Sequel.case({:a=>[2,3]}=>1}, 0)
sql_expr
Array#sql_expr and Hash#sql_expr treat the receiver as a conditions specifier, matching all of the conditions in the array.
{:a=>1, :b=>[2, 3]}.sql_expr # SQL: a = 1 AND b IN (2, 3) [[:a, 1], [:b, [2, 3]]].sql_expr # SQL: a = 1 AND b IN (2, 3)
Alternative: Sequel.expr:
Sequel.expr(:a=>1, :b=>[2, 3])
sql_negate
Array#sql_negate and Hash#sql_negate treat the receiver as a conditions specifier, matching none of the conditions in the array:
{:a=>1, :b=>[2, 3]}.sql_negate # SQL: a != 1 AND b NOT IN (2, 3) [[:a, 1], [:b, [2, 3]]].sql_negate # SQL: a != 1 AND b NOT IN (2, 3)
Alternative: Sequel.negate:
Sequel.negate(:a=>1, :b=>[2, 3])
sql_or
Array#sql_or nd Hash#sql_or treat the receiver as a conditions specifier, matching any of the conditions in the array:
{:a=>1, :b=>[2, 3]}.sql_or # SQL: a = 1 OR b IN (2, 3) [[:a, 1], [:b, [2, 3]]].sql_or # SQL: a = 1 OR b IN (2, 3)
Alternative: Sequel.or:
Sequel.or(:a=>1, :b=>[2, 3])
Array
sql_value_list
Array#sql_value_list wraps the array in an array subclass, which Sequel will always treat as a value list and not a conditions specifier. By default, Sequel treats arrays of two element arrays as a conditions specifier.
DB[:a].filter('(a, b) IN ?', [[1, 2], [3, 4]]) # SQL: (a, b) IN ((1 = 2) AND (3 = 4)) DB[:a].filter('(a, b) IN ?', [[1, 2], [3, 4]].sql_value_list) # SQL: (a, b) IN ((1, 2), (3, 4))
Alternative: Sequel.value_list:
Sequel.value_list([[1, 2], [3, 4]])
sql_string_join
Array#sql_string_join joins all of the elements in the array in an SQL string concatentation expression:
[:a].sql_string_join # SQL: a [:a, :b].sql_string_join # SQL: a || b [:a, 'b'].sql_string_join # SQL: a || 'b' ['a', :b].sql_string_join(' ') # SQL: 'a' || ' ' || b
Alternative: Sequel.join:
Sequel.join(['a', :b], ' ')
Hash & Symbol
&
Hash#& and Symbol#& return a Sequel boolean expression, matching the condition specified by the receiver and the condition specified by the given argument:
:a & :b # SQL: a AND b {:a=>1} & :b # SQL: a = 1 AND b {:a=>true} & :b # SQL: a IS TRUE AND b
Alternative: Sequel.&:
Sequel.&({:a=>1}, :b)
|
Hash#| returns a Sequel boolean expression, matching the condition specified by the receiver or the condition specified by the given argument:
:a | :b # SQL: a OR b {:a=>1} | :b # SQL: a = 1 OR b {:a=>true} | :b # SQL: a IS TRUE OR b
Alternative: Sequel.|:
Sequel.|({:a=>1}, :b)