class documentation

class DummyConnectionPool(ConnectionPool): (source)

View In Hierarchy

A testable ConnectionPool;

Method __init__ Don't forward init call.
Class Variable threadpool Undocumented
Instance Variable _reactor Undocumented

Inherited from ConnectionPool:

Method __getstate__ Undocumented
Method __setstate__ Undocumented
Method close Close all pool connections and shutdown the pool.
Method connect Return a database connection when one becomes available.
Method disconnect Disconnect a database connection associated with this pool.
Method finalClose This should only be called by the shutdown trigger.
Method runInteraction Interact with the database and return the result.
Method runOperation Execute an SQL query and return None.
Method runQuery Execute an SQL query and return the result.
Method runWithConnection Execute a function with a database connection and return the result.
Method start Start the connection pool.
Constant CP_ARGS Undocumented
Class Variable good_sql Undocumented
Class Variable name Undocumented
Class Variable noisy Undocumented
Class Variable openfun Undocumented
Class Variable reconnect Undocumented
Instance Variable __dict__ Undocumented
Instance Variable connargs Undocumented
Instance Variable connectionFactory factory for connections, default to Connection.
Instance Variable connections Undocumented
Instance Variable connkw Undocumented
Instance Variable dbapi Undocumented
Instance Variable dbapiName Undocumented
Instance Variable max Undocumented
Instance Variable min Undocumented
Instance Variable running Undocumented
Instance Variable shutdownID None or a handle on the shutdown event trigger which will be used to stop the connection pool workers when the reactor stops.
Instance Variable startID Undocumented
Instance Variable threadID Undocumented
Instance Variable transactionFactory factory for transactions, default to Transaction.
Method _close Undocumented
Method _runInteraction Undocumented
Method _runOperation Undocumented
Method _runQuery Undocumented
Method _runWithConnection Undocumented
Method _start Undocumented