aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/base_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Hash#to_xml supports YAML attributes; ActiveRecord::Base#to_xml support seria...Jeremy Kemper2007-03-181-1/+1
* Base.update_all :order and :limit options. Useful for MySQL updates that must...Jeremy Kemper2007-03-171-0/+6
* Oracle: overflow Time to DateTime. Closes #7718.Jeremy Kemper2007-03-061-1/+2
* SQLServer: don't choke on strings containing 'null'. Closes #7083.Jeremy Kemper2007-01-281-2/+10
* update_all can take a Hash argument. sanitize_sql splits into two methods for...Jeremy Kemper2007-01-281-10/+23
* Don't create instance writer methods for class attributes. Closes #7401 [Rick]Rick Olson2007-01-281-0/+10
* Allow the Oracle adapter to insert a string "null". Closes #6997 [laurelfan]Michael Koziarski2007-01-161-1/+10
* Sybase adapter fixes. Closes #6926 [jsheets]Michael Koziarski2007-01-051-5/+5
* try to appease the angry OracleJamis Buck2006-12-291-1/+1
* make sure query attributes on custom fields works as it used toJamis Buck2006-12-291-1/+22
* Pushing a record on an association collection doesn't unnecessarily load all ...Jeremy Kemper2006-12-211-3/+3
* Partially revert [5660] - makes more trouble than it resolves. References #57...Jeremy Kemper2006-12-191-2/+2
* Subclasses of an abstract class work with single-table inheritance. Closes #5...Jeremy Kemper2006-12-011-2/+55
* Quote ActiveSupport::Multibyte::Chars. Closes #6653.Jeremy Kemper2006-11-201-0/+12
* Simplify query_attribute by typecasting the attribute value and checking whet...Jeremy Kemper2006-11-201-1/+28
* Find with :include respects scoped :order. Closes #5850.Jeremy Kemper2006-11-071-0/+10
* SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations worka...Jeremy Kemper2006-11-051-8/+10
* Dynamically generate reader methods for serialized attributes. Closes #6362.Jeremy Kemper2006-11-021-1/+1
* Added update_attributes! which uses save! to raise an exception if a validati...David Heinemeier Hansson2006-10-091-1/+38
* Use class name as XML_TYPE_NAMES key.Jeremy Kemper2006-09-291-2/+2
* Deprecation: count class method should be called with an options hash rather ...Jeremy Kemper2006-09-261-1/+1
* Deprecation tests. Remove warnings for dynamic finders and for the foo_count ...Jeremy Kemper2006-09-151-29/+26
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-4/+10
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-10/+4
* to_xml: the :methods option works on arrays of records. Closes #5845.Jeremy Kemper2006-09-021-0/+6
* Nested subclasses are not prefixed with the parent class' table_name since th...Jeremy Kemper2006-08-251-5/+21
* to_xml: correct naming of included associations. Closes #5831.Jeremy Kemper2006-08-201-0/+5
* Nested classes are given table names prefixed by the singular form of the par...Jeremy Kemper2006-08-161-4/+8
* Fixed that default timezones for new / initialize should uphold utc setting (...David Heinemeier Hansson2006-08-051-0/+16
* Fixed to_xml with :include misbehaviors when invoked on array of model instan...David Heinemeier Hansson2006-08-031-0/+13
* more concise destroy testJeremy Kemper2006-08-011-13/+5
* Patch sql injection vulnerability when using integer or float columns.Jamis Buck2006-07-271-0/+6
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-1/+33
* PostgreSQL: correctly quote microseconds in timestamps. Closes #5641.Jeremy Kemper2006-07-071-0/+1
* More succinct current_adapter? Enable locking duel for Oracle.Jeremy Kemper2006-07-071-4/+4
* Fixed a few Oracle issues: Allows Oracle's odd date handling to still work co...David Heinemeier Hansson2006-07-051-1/+1
* PostgreSQL: support microsecond time resolution. Closes #5492.Jeremy Kemper2006-06-251-0/+6
* Change AR::Base#to_param to return a String instead of a Fixnum. Closes #5320.Nicholas Seckar2006-06-191-0/+4
* Refactored ActiveRecord::Base.to_xml to become a delegate for XmlSerializer, ...David Heinemeier Hansson2006-06-041-11/+11
* Fixed usage of :limit and with_scope when the association in scope is a 1:m (...David Heinemeier Hansson2006-06-031-0/+8
* to_xml fixes, features, and speedup. Closes #4989.Jeremy Kemper2006-06-031-23/+23
* fixtures :accounts for base_test. Closes #5268.Jeremy Kemper2006-06-021-1/+1
* Fixed that Base.find :all, :conditions => [ "id IN (?)", collection ] would f...David Heinemeier Hansson2006-06-011-2/+2
* Added Array#to_s(:db) that'll produce a comma-separated list of ids [DHH] Spl...David Heinemeier Hansson2006-05-311-0/+8
* Allow AR::Base#to_xml to include methods too. Closes #4921. [johan@textdrive....Marcel Molina2006-04-291-0/+6
* Add support for FrontBase (http://www.frontbase.com/) with a new adapter than...Marcel Molina2006-04-271-6/+6
* Add support for :order option to with_scope. Closes #3887. [eric.daspet@survo...Marcel Molina2006-04-261-0/+23
* Fixed that that multiparameter assignment doesn't work with aggregations (clo...David Heinemeier Hansson2006-04-061-0/+9
* Fix type_name_with_module to handle type names that begin with '::'. Closes #...Nicholas Seckar2006-04-061-0/+5
* Fixed DB2 adapter so nullable columns will be determines correctly now and qu...David Heinemeier Hansson2006-03-221-2/+2