aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Simplify dispatcher callbacks to eliminate unnecessary stale thread purging. ...Nick Sieger2008-11-081-4/+1
* Make sure ActiveRecord::Base.connected? doesn't raise an exception for define...Pratik Naik2008-11-061-1/+2
* Ensure ActiveRecord::ConnectionPool.connected? handles undefined connections....Wes Oldenbeuving2008-11-061-1/+1
* It is not necessary to store QueryCache in a thread local since the cache is ...Joshua Peek2008-10-301-27/+14
* Use database name in query cache thread local key [#1283 state:resolved]Joshua Peek2008-10-301-3/+2
* Add documentation for AbstractAdapter#sanitize_limit, and make its code more ...Hongli Lai (Phusion)2008-10-091-4/+15
* Merge docrailsPratik Naik2008-10-053-6/+86
* made ConnectionPool#checkout more robust by trying to loot dead threads when ...Aliaksey Kandratsenka2008-10-041-1/+5
* Fix race in ConnectionPool#checkoutAliaksey Kandratsenka2008-10-041-15/+14
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-141-0/+4
* Merge docrailsPratik Naik2008-09-131-2/+36
* Support :limit on update_all so that has_many with :limit can be safely updatedTarmo Tänav2008-09-101-0/+4
* Handle connection timeouts with a slightly nicer error message.Michael Koziarski2008-09-041-1/+1
* Default connection allow_concurrency to false (for PostgreSQL)Nick Sieger2008-09-041-2/+1
* Deprecate verification_timeout and verify before resetNick Sieger2008-09-042-9/+12
* Minor tweak to retrieve_connection_pool -- recurse instead of loopNick Sieger2008-08-291-6/+4
* Remove some synchronization that's probably overkill, assuming one doesn't es...Nick Sieger2008-08-291-10/+1
* Collapse connection pool class hierarchy; YAGNI.Nick Sieger2008-08-291-112/+48
* Make clear_active_connections! also return stale connections back to the poolNick Sieger2008-08-292-33/+25
* Remove CachedConnectionPerThread per-thread pooling mechanism in favor of a f...Nick Sieger2008-08-291-17/+4
* Deprecate allow_concurrency and make it have no effectNick Sieger2008-08-292-39/+16
* Add connection reset and verification upon each connection checkoutNick Sieger2008-08-291-2/+7
* Fix typo: was using brackets instead of parens. Must need more sleep.Nick Sieger2008-08-291-1/+1
* Favor existing connections over new ones if availableNick Sieger2008-08-291-3/+3
* More doco and class/method renames. Now have a strategy for integration with ...Nick Sieger2008-08-291-24/+39
* Fix checkin method, add a couple more testsNick Sieger2008-08-291-1/+1
* Nearing the finish line. Initial fixed-size connection pool implemented, more...Nick Sieger2008-08-292-22/+120
* Clean up the code, get rid of reserve/release, add some more docsNick Sieger2008-08-291-34/+51
* Extract a base class for connection pools, start to flesh out reserve/release...Nick Sieger2008-08-291-84/+105
* Split connection handler into single- and multiple-thread versions.Nick Sieger2008-08-292-31/+57
* Connection handling methods extracted out into separate ConnectionHandler classNick Sieger2008-08-292-104/+116
* Fix failure to retain value of allow_concurrencyNick2008-08-292-1/+3
* Add synchronization to connection pool alsoNick2008-08-292-4/+14
* Introduce synchronization around connection pool accessNick2008-08-292-21/+43
* Rename defined_connections to connection_poolsNick2008-08-291-10/+20
* Initial conversion to connection poolNick2008-08-292-171/+155
* Make query-cache thread-localNick Sieger2008-08-291-14/+29
* Don't set "NULL" as a constraint on nullable columns [#398 state:resolved]Tarmo Tänav2008-08-231-6/+2
* coerce blank strings to nil values for boolean and integer fieldsJosh Susser2008-08-221-1/+5
* Ensure t.timestamps respects options. [#828 state:resolved]Patrick Reagan2008-08-221-3/+4
* Revert "Performance: freeze cached rows instead of duping"Jeremy Kemper2008-08-211-4/+13
* Revert "coerce blank strings to nil values for boolean and integer fields"Jeremy Kemper2008-08-211-5/+1
* coerce blank strings to nil values for boolean and integer fieldsJosh Susser2008-08-211-1/+5
* Performance: freeze cached rows instead of dupingJeremy Kemper2008-08-181-13/+4
* validates_uniqueness_of uses database case sensitivity support instead of usi...Tarmo Tänav2008-07-311-0/+4
* Revert "Ensure adapater specific code is loaded on ActiveRecord::Base.establi...Joshua Peek2008-07-271-1/+0
* Ensure adapater specific code is loaded on ActiveRecord::Base.establish_conne...Joshua Peek2008-07-211-0/+1
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Faster and clearer value_to_booleanJeremy Kemper2008-07-141-5/+4
* Fixed that create database statements would always include "DEFAULT NULL" (Ni...David Heinemeier Hansson2008-07-141-1/+4