class Sequel::SQL::ColumnAll
Represents all columns in a given table, table.* in SQL
Attributes
table[R]
The table containing the columns being selected
Public Class Methods
new(table)
click to toggle source
Create an object with the given table
# File lib/sequel/sql.rb 1254 def initialize(table) 1255 @table = table 1256 freeze 1257 end