summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/pool.py
Commit message (Expand)AuthorAgeFilesLines
* happy new yearMike Bayer2010-01-071-1/+1
* - The cursor associated with connection pool connectionsMike Bayer2009-12-031-1/+4
* fix StaticPool [ticket:1615]Mike Bayer2009-11-121-3/+5
* allow setattr() access to _CursorFairy directly, thereby removing the need fo...Mike Bayer2009-11-061-4/+10
* - Connection pool logging now uses both INFO and DEBUGMike Bayer2009-11-031-34/+34
* use *args with log.debug()/log.info(), [ticket:1520]Mike Bayer2009-08-261-13/+13
* merge 0.6 series to trunk.Mike Bayer2009-08-061-71/+57
* Implemented recreate() for StaticPoolJason Kirtland2009-07-101-3/+13
* removed needless "thread" imports from utilMike Bayer2009-05-301-1/+1
* happy new yearMike Bayer2009-01-121-1/+1
* - Added a mutex for the initial pool creation whenMike Bayer2008-12-271-5/+13
* - NullPool supports reconnect on failure behavior.Mike Bayer2008-12-271-0/+12
* merged -r5299:5438 of py3k warnings branch. this fixes some sqlite py2.6 tes...Mike Bayer2008-12-181-2/+2
* - added sphinx handler to allow __init__ methods throughMike Bayer2008-12-171-15/+12
* - convert __init__ and :members: to be compatible with autoclass_content='both'Mike Bayer2008-12-071-7/+12
* - merged -r5338:5429 of sphinx branch.Mike Bayer2008-12-061-94/+185
* call count pinata partyMike Bayer2008-10-231-2/+3
* the @property / __slots__ fairy pays a visitMike Bayer2008-10-011-0/+4
* ugh...try againMike Bayer2008-08-271-1/+2
* critical fix to r5028 repairs SingleThreadPool to return a connection in case...Mike Bayer2008-08-271-7/+9
* dont rely upon AttributeError to test for NoneMike Bayer2008-08-131-4/+8
* - with 2.3 support dropped,Mike Bayer2008-08-131-46/+42
* Corrected docstring for Pool class to show that the default value for use_thr...Michael Trier2008-07-021-1/+1
* - zoomark/zoomark_orm seem to work with pool_threadlocal turned off, [ticket:...Mike Bayer2008-05-191-1/+0
* pool_threadlocal is off by default [ticket:1049]Mike Bayer2008-05-191-1/+2
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-12/+12
* Renamed rollback_returned to reset_on_return. Future, dialect-aware pools ca...Jason Kirtland2008-05-051-8/+13
* - added "rollback_returned" option to Pool which willMike Bayer2008-05-051-2/+4
* - Pool listeners may now be specified as a duck-type of PoolListener or a dic...Jason Kirtland2008-04-041-5/+15
* - Revamped the Connection memoize decorator a bit, moved to engineJason Kirtland2008-04-021-15/+0
* - reverted previous "strings instead of tuples" change due to more specific t...Mike Bayer2008-03-301-0/+15
* added dispose() for StaticPoolMike Bayer2008-03-021-0/+4
* - psycopg2 can raise un-str()able exceptions; don't croak when trying to log ...Jason Kirtland2008-02-081-1/+6
* happy new yearMike Bayer2008-01-011-1/+1
* - Re-raise SystemExit et al in _ConnectionRecord.closeJason Kirtland2007-12-191-14/+20
* - auto-reconnect support improved; a Connection can now automaticallyMike Bayer2007-12-191-1/+6
* Migrated Connection.properties to Connection.info ('info' is the new standard...Jason Kirtland2007-11-181-11/+15
* - Pool listeners preserved on pool.recreate()Jason Kirtland2007-11-101-71/+71
* - 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