调用数据库函数以更新用户详细信息

时间:2011-06-19 22:15:06

标签: ruby-on-rails ruby postgresql

使用下面的代码更新用户密码时,有没有办法使用这个PostgreSQL函数crypt('<password>', gen_salt('bf'))

def update
  @player = Player.find(params[:id])

  respond_to do |format|
    if @player.update_attributes(params[:player])
      flash[:notice] = 'Player was successfully updated.'
      format.html { redirect_to(@player) }
      format.xml  { head :ok }
    else
      format.html { render :action => "edit" }
      format.xml  { render :xml => @player.errors, :status => :unprocessable_entity }
    end
  end
end

1 个答案:

答案 0 :(得分:1)

在update-update_all方法中至少有一种使用纯SQL的方法。

因此,要使用Postgres crypt方法更新玩家的密码,您可以执行以下操作:

Player.update_all "password = crypt('<password>', gen_salt('bf'))", "id = #{params[:id]}"