aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Revert allow_concurrency change for better testing. Retrieve_connection in tw...Jeremy Kemper2006-03-021-1/+2
* (duh :)Jeremy Kemper2006-03-011-1/+1
* Typo in stale thread removal.Jeremy Kemper2006-03-011-1/+1
* Clear stale, cached connections left behind by defunct threads. Eliminate dup...Jeremy Kemper2006-03-011-76/+109
* Speed up class -> connection caching and stale connection verification. Close...Jeremy Kemper2006-02-271-30/+81
* ActiveRecord::Base.remove_connection explicitly closes database connections a...Jeremy Kemper2006-02-261-6/+7
* Add documentation for add_index and remove_index. Closes #3600.Marcel Molina2006-01-251-1/+11
* SchemaDumper now doesn't fail anymore when there are unknown column types in ...Tobias Lütke2005-12-241-1/+2
* Dont overwrite the documentation from the real base classDavid Heinemeier Hansson2005-12-051-1/+0
* Clear the connection cache entry when a new connection is established on the ...Jeremy Kemper2005-12-051-1/+24
* Connection cache to speed up retrieve_connection and get rid of dirty connect...Jeremy Kemper2005-12-041-31/+2
* Reloading a model doesn't lose track of its connection. References #2996.Jeremy Kemper2005-11-241-8/+8
* r3181@asus: jeremy | 2005-11-19 02:52:24 -0800Jeremy Kemper2005-11-191-0/+32
* Correct boolean handling in generated reader methods. References #2945.Jeremy Kemper2005-11-191-2/+11
* Document :force option to create_table. References #2921.Jeremy Kemper2005-11-171-0/+3