Changeset 9181
- Timestamp:
- 04/01/08 03:13:17 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
adapters/oracle/lib/active_record/connection_adapters/oracle_adapter.rb
r7915 r9181 148 148 end 149 149 150 # Returns an array of arrays containing the field values. 151 # Order is the same as that returned by #columns. 152 def select_rows(sql, name = nil) 153 result = select(sql, name) 154 result.map{ |v| v.values} 155 end 156 150 157 # QUOTING ================================================== 151 158 #