aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Mock the beginning of the transaction also. References #8642.Jeremy Kemper2007-06-231-1/+1
* Rollback if commit raises an exception. Closes #8642.Jeremy Kemper2007-06-231-2/+9
* Rollback [6961] which breaks SQLite tests. Reference #7345.Jeremy Kemper2007-06-081-2/+1
* Migrations: raise if a column is duplicated. Closes #7345.Jeremy Kemper2007-06-071-1/+2
* Oracle binary fixtures; pull fixture insertion into the adapters. Closes #7987.Jeremy Kemper2007-05-261-0/+6
* Migrations: add_column supports custom column types. Closes #7742. First-patc...Jeremy Kemper2007-05-251-14/+17
* Load database adapters on demand. Eliminates config.connection_adapters and R...Jeremy Kemper2007-05-251-1/+6
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-181-8/+3
* Added short-hand declaration style to migrations (inspiration from Sexy Migra...David Heinemeier Hansson2007-05-061-1/+45
* DateTimes assume the default timezone. Closes #7764.Jeremy Kemper2007-03-091-2/+3
* Fix an edge case with dates during the Italian calendar reform! Hehe. Closes ...Jeremy Kemper2007-03-061-1/+6
* Added database connection as a yield parameter to ActiveRecord::Base.transact...David Heinemeier Hansson2007-02-211-1/+6
* Use Date#to_s(:db) for quoted dates. Closes #7411.Jeremy Kemper2007-01-281-6/+4
* Don't create instance writer methods for class attributes. Closes #7401 [Rick]Rick Olson2007-01-281-1/+1
* Improve handling of LoadErrors with the oracle adapter. Closes #6780 [kubo]Michael Koziarski2007-01-161-1/+1
* Made sure that connections are only removed for SQLiteDavid Heinemeier Hansson2007-01-151-2/+4
* be like a duck. Let's not rely on explicit classes, so we can pass proxy obje...Jamis Buck2007-01-151-3/+8
* Skip column options for primary keys. Closes #7048.Jeremy Kemper2007-01-152-7/+9
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-152-9/+12
* Oracle: create_table takes a :sequence_name option to override the 'tablename...Jeremy Kemper2007-01-151-2/+2
* PostgreSQL: use a subselect to correctly perform eager finds with :limit and ...Jeremy Kemper2007-01-121-0/+6
* If only life was that simple (it didnt help)David Heinemeier Hansson2006-12-011-0/+8
* Replace the elaborate reloading connection checking scheme, just fix the Ruby...David Heinemeier Hansson2006-12-011-8/+0
* Only reload connections in development mode that supports (and requires that)...David Heinemeier Hansson2006-11-261-0/+8
* Quote ActiveSupport::Multibyte::Chars. Closes #6653.Jeremy Kemper2006-11-201-1/+2
* Oracle: fix limited id selection for eager loading. Closes #6515.Jeremy Kemper2006-11-101-2/+5
* Oracle: resolve test failures, use prefetched primary key for inserts, check ...Jeremy Kemper2006-11-011-4/+19
* fix select_limited_ids_list issues in postgresql, retain current behavior in ...Rick Olson2006-10-131-0/+5
* Make indexed columns easy to extract from the index name. Oracle users should...Jeremy Kemper2006-08-151-1/+1
* Migrations: uniquely name multicolumn indexes so you don't have to.Jeremy Kemper2006-08-151-10/+8
* Patch sql injection vulnerability when using integer or float columns.Jamis Buck2006-07-271-1/+2
* create_table rdoc: suggest :id => false for habtm join tablesJeremy Kemper2006-07-101-2/+2
* Oracle: BigDecimal support. Closes #5667.Jeremy Kemper2006-07-101-8/+6
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-083-27/+119
* Respect type method. #5337Jeremy Kemper2006-07-081-4/+2
* Oracle: use nonblocking queries if allow_concurrency is set, fix pessimistic ...Jeremy Kemper2006-07-071-1/+1
* PostgreSQL: support microsecond time resolution. Closes #5492.Jeremy Kemper2006-06-251-5/+15
* Don't use keywords as local vars in documentation. Closes #5291. [jeremy@pla...Rick Olson2006-06-211-4/+4
* r4644@asus: jeremy | 2006-06-16 14:57:03 -0700Jeremy Kemper2006-06-192-1/+13
* Records and arrays of records are bound as quoted ids.Jeremy Kemper2006-06-011-0/+3
* Fix Oracle boolean support and tests. Closes #5139. [schoenm@earthlink.net]Marcel Molina2006-05-211-4/+6
* Dates and times interpret empty strings as nil rather than 2000-01-01. Closes...Jeremy Kemper2006-05-071-1/+2
* Properly quote index names in migrations (closes #4764) [John Long]Rick Olson2006-04-201-6/+7
* Fixed documentationDavid Heinemeier Hansson2006-03-281-6/+6
* Change periods (.) in table aliases to _'s. Closes #4251 [jeff@ministrycente...Rick Olson2006-03-261-1/+1
* Fixed db_schema_import when binary types are present (closes #3101) [DHH]David Heinemeier Hansson2006-03-251-1/+1
* Rework table aliasing to account for truncated table aliases. Add smarter ta...Rick Olson2006-03-181-6/+2
* Add AbstractAdapter#table_alias_for to create table aliases according to the ...Rick Olson2006-03-181-0/+14
* Dynamically set allow_concurrency. Closes #4044.Jeremy Kemper2006-03-131-19/+47
* fix unreplaced class varJeremy Kemper2006-03-021-1/+1