summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/pool.py
Commit message (Expand)AuthorAgeFilesLines
...
* - inlined a couple of context variablesMike Bayer2007-10-271-1/+1
* restored WeakValueDict for threadlocal connections + profiler test, addressingMike Bayer2007-08-221-3/+6
* -removed echo_property() function, moved logging checks toMike Bayer2007-08-211-17/+15
* changing Pool to use weakref callback for auto-cleanup, instead of __del__.Mike Bayer2007-08-211-27/+32
* - Engine and TLEngine assume "threadlocal" behavior on Pool; both use connect()Mike Bayer2007-08-201-19/+31
* light docstring tweaks to the poolJason Kirtland2007-08-191-37/+48
* - added extra argument con_proxy to ConnectionListener interface checkout/che...Mike Bayer2007-08-171-2/+2
* Centralized some `try: import foo except: import other as foo` imports in utilJason Kirtland2007-08-131-9/+1
* Added an exception hierarchy shadowing DB-API exc typesJason Kirtland2007-08-111-1/+10
* -merged 0.3 pool threadlocal fix from r3139Mike Bayer2007-08-021-12/+6
* - removed auto_close_cursors and disallow_open_cursors arguments from Pool;Mike Bayer2007-07-291-41/+6
* Added pool hooks for connection creation, check out and check in.Jason Kirtland2007-07-281-3/+59
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena...Mike Bayer2007-07-271-1/+21
* further adjustment to pool.getMike Bayer2007-07-201-2/+6
* - a new mutex that was added in 0.3.9 causes the pool_timeoutMike Bayer2007-07-201-2/+9
* - adjustments to pool locking test to fail on OSXMike Bayer2007-06-301-7/+12
* - added a mutex to QueuePool's "overflow" calculation to prevent a raceMike Bayer2007-06-301-6/+16
* added StaticPool, stores just one connection.Mike Bayer2007-06-091-0/+25
* propigated detach() and invalidate() methods to Connection.Mike Bayer2007-05-101-0/+13
* - Connections can be detached from their pool, closing on dereference instead...Jason Kirtland2007-05-091-1/+11
* added "recreate()" argument to connection pool classesMike Bayer2007-04-171-5/+30
* for #516, moved the "disconnect check" step out of pool and back into base.py...Mike Bayer2007-04-031-21/+1
* - merged the patch from #516 + fixesMike Bayer2007-04-021-21/+47
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-4/+10
* thank you, SVN, for being completely idiotic and non-intutive. rolling back i...Mike Bayer2007-03-301-7/+2
* current progress with exec branchMike Bayer2007-03-291-2/+7
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-138/+226
* r/m unused importJonathan Ellis2007-01-251-1/+1
* copyright updateMike Bayer2007-01-051-1/+1
* - fixed QueuePool bug whereby its better able to reconnect to a databaseMike Bayer2006-12-131-1/+5
* cursors needs to be weak keyMike Bayer2006-12-081-1/+1
* - fix to connection pool _close() to properly clean up, fixesMike Bayer2006-12-081-14/+16
* - MySQL detects errors 2006 (server has gone away) and 2014Mike Bayer2006-12-081-4/+7
* converted imports to absoluteMike Bayer2006-10-261-1/+1
* oops, removed pool debugging codeMike Bayer2006-10-241-7/+0
* - SingletonConnectionPool must use the "threadlocal" pooling behaviorMike Bayer2006-10-241-0/+8
* - some new Pool utility classes, updated docsMike Bayer2006-10-241-38/+129
* log connection closesMike Bayer2006-10-241-0/+1
* improved exceptions for closed connectionsMike Bayer2006-10-071-1/+3
* - pool will auto-close open cursors, or can be configured to raise an error i...Mike Bayer2006-09-281-3/+11
* commented out open cursor check, until resolution of [ticket:312]Mike Bayer2006-09-261-2/+2
* - logging is now implemented via standard python "logging" module.Mike Bayer2006-09-241-10/+8
* - connection pool tracks open cursors and raises an error if connectionMike Bayer2006-09-231-0/+12
* removed auto-dispose on __del__, produces too much garbage exceptiongsMike Bayer2006-09-101-1/+3
* - changed "invalidate" semantics with pooled connection; willMike Bayer2006-08-261-37/+29
* - cleanup on connection methods + documentation. custom DBAPIMike Bayer2006-08-251-52/+83
* fixes for threadless python compilesJonathan Ellis2006-08-151-1/+1
* fix mysql borkageJonathan Ellis2006-08-101-1/+5
* improvement over previous changeset:Mike Bayer2006-08-051-2/+14
* temporary workaround dispose_local() added to SingletonThreadPoolMike Bayer2006-08-051-1/+7