Method: Rack::Insight::SQLPanel::QueryResult#rows
- Defined in:
- lib/rack/insight/panels/sql_panel/query.rb
#rows ⇒ Object
31 32 33 34 35 36 37 38 39 |
# File 'lib/rack/insight/panels/sql_panel/query.rb', line 31 def rows if result.respond_to?(:values) result.values else result.map do |row| row end end end |