aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/crud.rb
blob: ec58734456e06129c94eaf7025b27215b53bcdae (plain) (tree)
1
2
3
4
5
6
7
8
9



                                      
                             
                                    
 
                                     
                             
          
                                              
         
                       
                   

                            
                             






                                       
                                                                                


                          
 
                                
                                                 

       
                             

                                    






                                       
                                                                                



                                                             
       
 
                      

                                    
                        





                      
                                                                                



                                                             
       

     
module Arel
  ###
  # FIXME hopefully we can remove this
  module Crud
    def compile_update values
      um = UpdateManager.new @engine

      if Nodes::SqlLiteral === values
        relation = @ctx.froms
      else
        relation = values.first.first.relation
      end
      um.table relation
      um.set values
      um.take @ast.limit
      um.order(*@ast.orders)
      um.wheres = @ctx.wheres
      um
    end

    # FIXME: this method should go away
    def update values
      if $VERBOSE
        warn <<-eowarn
update (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_update`
        eowarn
      end

      um = compile_update values
      @engine.connection.update um.to_sql, 'AREL'
    end

    def compile_insert values
      im = InsertManager.new @engine
      im.insert values
      im
    end

    # FIXME: this method should go away
    def insert values
      if $VERBOSE
        warn <<-eowarn
insert (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_insert`
        eowarn
      end
      @engine.connection.insert compile_insert(values).to_sql
    end

    def compile_delete
      dm = DeleteManager.new @engine
      dm.wheres = @ctx.wheres
      dm.from @ctx.froms
      dm
    end

    def delete
      if $VERBOSE
        warn <<-eowarn
delete (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_delete`
        eowarn
      end
      @engine.connection.delete compile_delete.to_sql, 'AREL'
    end
  end
end