aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
| | * Don't leave open dangling connections in development mode. [#1335 state:resol...Pratik Naik2008-11-081-2/+1
| | * Simplify dispatcher callbacks to eliminate unnecessary stale thread purging. ...Nick Sieger2008-11-081-4/+1
| | * Revert commit which breaks all the tests.Michael Koziarski2008-11-071-8/+4
| * | undef abstract methods instead of raising NotImplementedError. Still need the...Jeremy Kemper2008-11-071-4/+4
| |/
| * Stop logging SHOW FIELDS and SET SQL_AUTO_IS_NULL=0 for the MysqlAdapter as t...David Heinemeier Hansson2008-11-061-4/+8
| * 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
* | Reimplement Jeremy's PostgreSQL automatic transaction state introspection code.Hongli Lai (Phusion)2008-11-032-2/+28
* | Make SQLite3 pass the unit tests for savepoints.Hongli Lai (Phusion)2008-11-033-0/+14
* | Fix a stale typo in the PostgreSQL adapter. Fix a stale mock expection in tra...Hongli Lai (Phusion)2008-11-031-1/+1
* | Revert "PostgreSQL: introduce transaction_active? rather than tracking activi...Hongli Lai (Phusion)2008-11-031-38/+0
* | Improve documentation for DatabaseStatements#transactions and AbstractAdapter...Hongli Lai (Phusion)2008-11-032-6/+72
* | Implement savepoints.Jonathan Viney2008-11-034-6/+47
|/
* 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
* Remove reference to fformat to restore support for postgres gem.Michael Koziarski2008-10-261-1/+1
* Fix binary data corruption bug in PostgreSQL adaptorAdam Majer2008-10-251-68/+79
* Add documentation for AbstractAdapter#sanitize_limit, and make its code more ...Hongli Lai (Phusion)2008-10-091-4/+15
* Merge docrailsPratik Naik2008-10-054-24/+117
* 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
* don't quote decimal values for mysql. It doesn't make sense and breaks in new...Aliaksey Kandratsenka2008-10-041-1/+1
* Make sure recreate MySQL test database with the proper encoding and collation...Luca Guidi2008-10-031-2/+2
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-142-1/+10
* 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-102-0/+8
* Use a more sensible resolution on the new millisecond benchmarksDavid Heinemeier Hansson2008-09-051-1/+1
* Changed all benchmarking reports to be in millisecondsDavid Heinemeier Hansson2008-09-051-3/+3
* Handle connection timeouts with a slightly nicer error message.Michael Koziarski2008-09-041-1/+1
* Remove flawed execute("ROLLBACK") approach; #reset! defaults to nothingNick Sieger2008-09-042-5/+1
* Default connection allow_concurrency to false (for PostgreSQL)Nick Sieger2008-09-041-2/+1
* Deprecate verification_timeout and verify before resetNick Sieger2008-09-043-17/+16
* still need to track whether we're the toplevel transactionJeremy Kemper2008-09-041-3/+10
* PostgreSQL: introduce transaction_active? rather than tracking activity ourse...Jeremy Kemper2008-09-041-0/+32
* 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-292-112/+51
* 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-292-17/+9
* Deprecate allow_concurrency and make it have no effectNick Sieger2008-08-293-40/+19
* Add connection reset and verification upon each connection checkoutNick Sieger2008-08-293-4/+27
* 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-293-105/+117