Home | Trees | Index | Help |
---|
|
object
--+ |AbstractConnectionPool
--+ | SimpleConnectionPool
A connection pool that can't be shared across different threads.
Method Summary | |
---|---|
Close all connections. | |
Get a free connection and assign it to 'key' if not None. | |
Put away a connection. | |
Inherited from AbstractConnectionPool | |
Initialize the connection pool. | |
Close all connections. | |
Create a new connection and assign it to 'key' if not None. | |
Get a free connection and assign it to 'key' if not None. | |
Return a new unique key. | |
Put away a connection. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
Return hash(x)... | |
Return a new object with type S, a subtype of T... | |
helper for pickle | |
helper for pickle | |
Return repr(x)... | |
x.__setattr__('name', value) <==> x.name = value | |
Return str(x)... |
Method Details |
---|
closeall(self)Close all connections. Note that this can lead to some code fail badly when trying to use an already closed connection. If you call .closeall() make sure your code can deal with it. |
getconn(self, key=None)Get a free connection and assign it to 'key' if not None. |
putconn(self, conn, key=None, close=False)Put away a connection. |
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sat Jan 14 01:42:35 2006 | http://epydoc.sf.net |