Flowdock
method

bind

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: BindMap
bind(values) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/statement_cache.rb, line 81
      def bind(values)
        bvs = @bind_values.map { |pair| pair.dup }
        @indexes.each_with_index { |offset,i| bvs[offset][1] = values[i] }
        bvs
      end
Register or log in to add new notes.