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/crud.rb

27 lines
582 B
Ruby
Raw Normal View History

module Arel
###
# FIXME hopefully we can remove this
module Crud
# FIXME: this method should go away
def update values
um = UpdateManager.new @engine
2010-08-18 12:52:16 -04:00
if String === values
um.table @ctx.froms.last
else
um.table values.first.first.relation
end
um.set values
um.wheres = @ctx.wheres
@engine.connection.execute um.to_sql
end
# FIXME: this method should go away
def insert values
im = InsertManager.new @engine
im.insert values
@engine.connection.execute im.to_sql
end
end
end