aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* 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
* Quote booleans according the rules defined by the adapterMichael Koziarski2005-10-061-3/+7
* Added :force option to create_table that'll try to drop the table if it alrea...David Heinemeier Hansson2005-10-061-0/+5
* Forced newer versions of RedCloth to use hard breaks [DHH]David Heinemeier Hansson2005-10-021-2/+4
* Get rid of old symbolize_strings_in_hash.Jeremy Kemper2005-09-301-6/+1
* Ticket #2282 - fix parsing of timestamps with time zoneJeremy Kemper2005-09-301-1/+3
* No need to string.to_s right after checking that string.is_a?(String)Jeremy Kemper2005-09-301-3/+3
* Fix broken testcase for transactionsNicholas Seckar2005-09-291-6/+10
* Fix transactions so that calling return while inside a transaction will not l...Nicholas Seckar2005-09-281-4/+7
* Make schema definition column lookups agnostic w/r/t/ whether a key or symbol...Marcel Molina2005-09-281-2/+2