Class/Module Index [+]

Quicksearch

Arel::Nodes::InsertStatement

Attributes

columns[RW]
relation[RW]
values[RW]

Public Class Methods

new() click to toggle source
# File lib/arel/nodes/insert_statement.rb, line 6
def initialize
  @relation = nil
  @columns  = []
  @values   = nil
end

Public Instance Methods

initialize_copy(other) click to toggle source
# File lib/arel/nodes/insert_statement.rb, line 12
def initialize_copy other
  super
  @columns = @columns.clone
  @values =  @values.clone if @values
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.