aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* 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
* Quote column names in generated SQL. Closes #2728.Jeremy Kemper2005-11-041-2/+2
* Changed :dbfile to :database for SQLite adapter for consistency (old key stil...David Heinemeier Hansson2005-10-301-2/+2
* Added migration support for Oracle (closes #2647) [Michael Schoen]David Heinemeier Hansson2005-10-292-3/+3
* Worked around that connection can't be reset if allow_concurrency is off. Cl...Jeremy Kemper2005-10-291-0/+1
* Fixed SQL Server adapter so it honors options[:conditions] when applying :lim...David Heinemeier Hansson2005-10-281-1/+1
* Added migration support to SQL Server adapter (please someone do the same for...David Heinemeier Hansson2005-10-281-6/+8
* r3616@asus: jeremy | 2005-09-26 23:09:28 -0700Jeremy Kemper2005-10-162-3/+18
* Deprecated ActiveRecord::Base.threaded_connection in favor of ActiveRecord::B...Marcel Molina2005-10-121-1/+1
* Optimization refactoring for add_limit_offset!. In partial fullfilment of #1236.Marcel Molina2005-10-091-5/+7
* Add option (true by default) to generate reader methods for each attribute of...Marcel Molina2005-10-072-31/+47
* Add convenience predicate methods on Column class. In partial fullfilment of ...Marcel Molina2005-10-061-1/+13
* Add rename_table to mysql, sqlite and postgres adapters for use in migrationsTobias Lütke2005-10-061-1/+8