Summary of DBUtils.PooledDB

You can also browse the complete source file or the generated documentation.


class PooledDBError(Exception):


class InvalidConnection(PooledDBError):


class NotSupportedError(PooledDBError):


class TooManyConnections(PooledDBError):


class PooledDB:
    def __init__(self, creator,
            def wait()
    def steady_connection(self)
    def connection(self, shareable=True)
    def dedicated_connection(self)
    def unshare(self, con)
    def cache(self, con)
    def close(self)
    def __del__(self)


class PooledDedicatedDBConnection:
    def __init__(self, pool, con)
    def close(self)
    def __getattr__(self, name)
    def __del__(self)


class SharedDBConnection:
    def __init__(self, con)
    def __lt__(self, other)
    def __le__(self, other)
    def __eq__(self, other)
    def __ne__(self, other)
    def __gt__(self, other)
    def __ge__(self, other)
    def share(self)
    def unshare(self)


class PooledSharedDBConnection:
    def __init__(self, pool, shared_con)
    def close(self)
    def __getattr__(self, name)
    def __del__(self)