Class: Arel::InsertManager
Instance Attribute Summary
Attributes inherited from TreeManager
#ast, #engine, #visitor
Instance Method Summary
collapse
Methods inherited from TreeManager
#initialize_copy, #to_dot, #to_sql, #where
Constructor Details
Returns a new instance of InsertManager.
3
4
5
6
|
# File 'lib/arel/insert_manager.rb', line 3
def initialize engine
super
@ast = Nodes::InsertStatement.new
end
|
Instance Method Details
#columns ⇒ Object
13
|
# File 'lib/arel/insert_manager.rb', line 13
def columns; @ast.columns end
|
#insert(fields) ⇒ Object
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/arel/insert_manager.rb', line 16
def insert fields
return if fields.empty?
if String === fields
@ast.values = SqlLiteral.new(fields)
else
@ast.relation ||= fields.first.first.relation
values = []
fields.each do |column, value|
@ast.columns << column
values << value
end
@ast.values = Nodes::Values.new values, @ast.columns
end
end
|
#into(table) ⇒ Object
8
9
10
11
|
# File 'lib/arel/insert_manager.rb', line 8
def into table
@ast.relation = table
self
end
|
#values=(val) ⇒ Object
14
|
# File 'lib/arel/insert_manager.rb', line 14
def values= val; @ast.values = val; end
|