aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/finder_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Added :select option to find which can specify a different value than the def...David Heinemeier Hansson2005-07-141-0/+4
* Fixed Base.content_columns call for SQL Server adapter #1450 [DeLynn Berry] A...David Heinemeier Hansson2005-07-031-1/+5
* Updated all references to the old find_first and find_all to use the new styl...David Heinemeier Hansson2005-06-261-1/+1
* Fixed Base#find to honor the documentation on how :joins work and make them c...David Heinemeier Hansson2005-06-251-2/+5
* Fixed that calling Model.find([]) returns [] and doesn't throw an exception #...David Heinemeier Hansson2005-06-211-0/+4
* Fix quote_bound_value to not map Strings #1416 [htonl]David Heinemeier Hansson2005-06-161-0/+4
* Allow any Enumerable, not just Array, to work as bind variables #1344 [bitsweat]David Heinemeier Hansson2005-06-161-1/+8
* Don't expect fixtures to be returned in the order they were inserted.Jeremy Kemper2005-06-121-3/+4
* Do not use instantiated fixtures (in general) in tests. Also, support the use...Jamis Buck2005-06-101-14/+14
* Fixed use of construct_finder_sql when using :join #1288 [dwlt@dwlt.net]David Heinemeier Hansson2005-05-191-0/+8
* Added option for passing an array to the find_all version of the dynamic find...David Heinemeier Hansson2005-05-021-0/+4
* Made the dynamic finders use the new find API and updated the examples here a...David Heinemeier Hansson2005-04-171-5/+10
* Added testsDavid Heinemeier Hansson2005-04-031-0/+278
* Added new Base.find API and deprecated find_all, find_first. Added preliminar...David Heinemeier Hansson2005-04-031-283/+0
* Fixed the MS SQL adapter to work with the new limit/offset approach and with ...David Heinemeier Hansson2005-03-231-5/+6
* Added adapter independent limit clause as a two-element array with the first ...David Heinemeier Hansson2005-03-201-1/+28
* Added Base.exists?(id) that'll return true if an object of the class with the...David Heinemeier Hansson2005-03-171-0/+7
* Fixed that SQLite3 exceptions are caught and reported properly #823 [yerejm]David Heinemeier Hansson2005-03-141-0/+4
* Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'...David Heinemeier Hansson2005-02-181-0/+10
* Added an Oracle adapter that works with the Oracle bindings by Yoshida (http:...David Heinemeier Hansson2005-02-071-4/+10
* Fixed that the dynamic finders didnt treat nil as a "IS NULL" but rather "= N...David Heinemeier Hansson2005-01-241-0/+23
* Added bind-named arrays for interpolating a group of ids or strings in condit...David Heinemeier Hansson2005-01-241-1/+9
* Added find_all style to the new dynamic findersDavid Heinemeier Hansson2005-01-021-0/+8
* Added dynamic attribute-based finders as a cleaner way of getting objects by ...David Heinemeier Hansson2005-01-021-12/+22
* Restored bind arity checking #412 [bitsweat]David Heinemeier Hansson2005-01-021-2/+4
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-011-1/+33
* Fixed that Base#find will return an array if given an array -- regardless of ...David Heinemeier Hansson2004-12-151-1/+6
* Added Base.validate_uniqueness thatv alidates whether the value of the specif...David Heinemeier Hansson2004-12-101-0/+10
* Added named bind-style variable interpolation #281 [Michael Koziarski]David Heinemeier Hansson2004-12-081-0/+21
* Added the option for sanitizing find_by_sql and the offset parts in regular f...David Heinemeier Hansson2004-12-071-1/+36
* Fixed value quoting in all generated SQL statements, so that integers are not...David Heinemeier Hansson2004-12-071-2/+2
* Added bind-style variable interpolation for the condition arrays that uses th...David Heinemeier Hansson2004-12-071-0/+7
* InitialDavid Heinemeier Hansson2004-11-241-0/+67