1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/table.rb
2010-08-16 14:56:56 -07:00

40 lines
792 B
Ruby

module Arel
class Table
include Arel::Crud
@engine = nil
class << self; attr_accessor :engine; end
attr_reader :name, :engine
def initialize name, engine = Table.engine
@name = name
@engine = engine
@engine = engine[:engine] if Hash === engine
@columns = nil
end
def tm
SelectManager.new(@engine).from(self)
end
def where condition
tm.where condition
end
def project thing
tm.project thing
end
def columns
@columns ||= @engine.connection.columns(@name, "#{@name} Columns").map do |column|
Attributes.for(column).new self, column.name, column
end
end
def [] name
name = name.to_s
columns.find { |column| column.name == name }
end
end
end