aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/result.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove ActiveRecord::ModelJon Leighton2012-10-261-1/+1
| | | | | | | | | | In the end I think the pain of implementing this seamlessly was not worth the gain provided. The intention was that it would allow plain ruby objects that might not live in your main application to be subclassed and have persistence mixed in. But I've decided that the benefit of doing that is not worth the amount of complexity that the implementation introduced.
* Freeze columns only once per ResultSantiago Pastorino2012-09-201-6/+9
|
* Freeze columns just before using them as hash keysSantiago Pastorino2012-09-201-2/+5
|
* Freeze columns before using them as hash keysJeremy Evans2012-09-131-1/+1
| | | This reduces the number of allocated strings from columns * (rows + 1) to just columns.
* Refactor AR::Result or inherits. Because we have redundant codes aboutkennyj2012-08-221-2/+2
|
* Doc for ActiveRecord::Result empty? methodRob Zolkos2012-05-071-0/+1
|
* moving column types to an ivar on the resultAaron Patterson2012-02-071-8/+5
|
* column types are passed from the result set to the instantiated AR objectAaron Patterson2012-02-071-0/+4
|
* QueryCache will just dup an AR::Result, AR::Result can deep copyAaron Patterson2012-01-311-0/+6
|
* made the result set object act more like an arrayAaron Patterson2012-01-311-0/+19
|
* Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-231-1/+1
|
* updating the docco for ActiveRecord::ResultAaron Patterson2011-04-111-2/+2
|
* adjust query counts to be consistent across databases, make sure database ↵Aaron Patterson2011-02-041-0/+4
| | | | log the same things
* AR internals expect a normal hash, otherwise there are serialization ↵Aaron Patterson2011-01-051-1/+1
| | | | incompatibilities
* exec returns an AR::ResultAaron Patterson2010-10-261-0/+30