Methods that create Subscripts (SQL array accesses).
Return an SQL array subscript with the given arguments.
:array.sql_subscript(1) # SQL: array[1] :array.sql_subscript(1, 2) # SQL: array[1, 2]
# File lib/sequel/sql.rb, line 421 def sql_subscript(*sub) Subscript.new(self, sub.flatten) end
Generated with the Darkfish Rdoc Generator 2.