Flowdock
method

select

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters::SQLiteAdapter
select(sql, name = nil) protected

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/connection_adapters/sqlite_adapter.rb, line 283
        def select(sql, name = nil) #:nodoc:
          execute(sql, name).map do |row|
            record = {}
            row.each do |key, value|
              record[key.sub(/^"?\w+"?\./, '')] = value if key.is_a?(String)
            end
            record
          end
        end
Register or log in to add new notes.