class NullPool(Pool):
A Pool which does not pool connections.
Instead it literally opens and closes the underlying DB-API connection per each connection open/close.
Reconnect-related functions such as recycle and connection invalidation are not supported by this Pool implementation, since no connections are held persistently.
Method | _do_get |
Undocumented |
Method | _do_return_conn |
Undocumented |
Method | dispose |
Undocumented |
Method | recreate |
Undocumented |
Method | status |
Undocumented |