aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Fixed that multiparameter posts ignored attr_protected #1532 [alec+rails@very...David Heinemeier Hansson2005-06-281-3/+3
* Updated all references to the old find_first and find_all to use the new styl...David Heinemeier Hansson2005-06-261-7/+7
* Fixed Base#find to honor the documentation on how :joins work and make them c...David Heinemeier Hansson2005-06-251-4/+6
* Fixed that calling Model.find([]) returns [] and doesn't throw an exception #...David Heinemeier Hansson2005-06-211-0/+1
* Fix quote_bound_value to not map Strings #1416 [htonl]David Heinemeier Hansson2005-06-161-5/+4
* Allow any Enumerable, not just Array, to work as bind variables #1344 [bitsweat]David Heinemeier Hansson2005-06-161-1/+1
* Corrected @@configurations typo. #1410 [david@ruppconsulting.com]Jeremy Kemper2005-06-121-3/+3
* Return PostgreSQL columns in the order they are declared #1374 (perlguy@gmail...Jeremy Kemper2005-06-121-11/+9
* Fixed use of construct_finder_sql when using :join #1288 [dwlt@dwlt.net]David Heinemeier Hansson2005-05-191-1/+1
* Fixed that clone would break when an aggregate had the same name as one of it...David Heinemeier Hansson2005-05-191-12/+25
* Changed the callbacks such that observers are notified before the in-object c...David Heinemeier Hansson2005-05-021-0/+9
* Added option for passing an array to the find_all version of the dynamic find...David Heinemeier Hansson2005-05-021-1/+9
* Added compatibility with camelCase column names for dynamic finders #533 [Dee...David Heinemeier Hansson2005-04-301-1/+1
* Fixed extraneous comma in count() function that made it not work with joins #...David Heinemeier Hansson2005-04-301-3/+2
* Fixed incompatibility with Base#find with an array of ids that would fail whe...David Heinemeier Hansson2005-04-301-1/+1
* Fixed documentation and prepared for release of 0.12David Heinemeier Hansson2005-04-181-4/+4
* Speeded up eager loading a whole bunchDavid Heinemeier Hansson2005-04-181-1/+5
* Added documentation for new Base.find API and eager association loadingDavid Heinemeier Hansson2005-04-181-7/+20
* Fixes for postgresql testing #1129, #1130, #1131David Heinemeier Hansson2005-04-181-10/+17
* Made the dynamic finders use the new find API and updated the examples here a...David Heinemeier Hansson2005-04-171-17/+26
* Qualify the ids used such that eager loading can avoid ambigious keysDavid Heinemeier Hansson2005-04-131-1/+1
* Fixed pagination to work with joins #1034 [scott@sigkill.org]David Heinemeier Hansson2005-04-131-1/+1
* Fixed that Base.silence should restore the old logger level when done, not ju...David Heinemeier Hansson2005-04-131-1/+2
* Made eager loading work with inheritance hierarchies #1065 [Ryan Carver]David Heinemeier Hansson2005-04-101-3/+5
* Fixed counter_sql when no records exist in database for PostgreSQL (would giv...David Heinemeier Hansson2005-04-071-2/+8
* Prefix primary key with table name so it works as part of a joined fetchDavid Heinemeier Hansson2005-04-041-2/+2
* Allow order, conditions, and joins in finds that include associationsDavid Heinemeier Hansson2005-04-031-2/+5
* Added new Base.find API and deprecated find_all, find_first. Added preliminar...David Heinemeier Hansson2005-04-031-72/+49
* Fixed Base.silence/benchmark to only log if a logger has been configured #986...David Heinemeier Hansson2005-04-021-3/+3
* Added a join parameter as the third argument to Base.find_first and as the se...David Heinemeier Hansson2005-04-021-2/+4
* Added a join parameter as the third argument to Base.find_first #426 [skaes@w...David Heinemeier Hansson2005-03-311-2/+2
* Fixed bug in Base#hash method that would treat records with the same string-b...David Heinemeier Hansson2005-03-301-1/+1
* Fixed that Active Record objects with float attribute could not be cloned #808David Heinemeier Hansson2005-03-271-1/+1
* Added documentation about named bind variablesDavid Heinemeier Hansson2005-03-271-0/+10
* Fixed that AR exists?() would explode on postgresql if the passed id did not ...David Heinemeier Hansson2005-03-231-1/+1
* Added adapter independent limit clause as a two-element array with the first ...David Heinemeier Hansson2005-03-201-3/+5
* Added alias_method :to_param, :id to Base, such that Active Record objects to...David Heinemeier Hansson2005-03-201-0/+3
* Added type conversion before saving a record, so string-based values like "10...David Heinemeier Hansson2005-03-201-1/+1
* Added Base.exists?(id) that'll return true if an object of the class with the...David Heinemeier Hansson2005-03-171-0/+7
* Doc fix #805David Heinemeier Hansson2005-03-141-1/+1
* Fixed that symbols can be used on attribute assignment, like page.emails.crea...David Heinemeier Hansson2005-03-101-0/+1
* Added ActiveRecord::Base.colorize_logging to control whether to use colors in...David Heinemeier Hansson2005-03-061-0/+6
* Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions ...David Heinemeier Hansson2005-03-061-2/+30
* Fixed rails_generator to be usable without RubyGems #686 [Cristi BALAN]. Move...David Heinemeier Hansson2005-03-061-3/+0
* Finished polishing API docsDavid Heinemeier Hansson2005-02-231-52/+50
* Optimized the SQL used to generate has_and_belongs_to_many queries by listing...David Heinemeier Hansson2005-02-221-1/+1
* Fixed that find_by_* would fail when column names had numbers #670 [demetrius]David Heinemeier Hansson2005-02-191-1/+1
* Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'...David Heinemeier Hansson2005-02-181-1/+1
* Fixed the verbosity of using the AR storeDavid Heinemeier Hansson2005-02-171-2/+9
* Moved Active Support into its own gemDavid Heinemeier Hansson2005-02-151-3/+3