MySQLPool.this
- this(string host, string user, string password, string database, ushort port, uint maxConcurrent, SvrCapFlags capFlags, void delegate(Connection) onNewConnection)
- this(string host, string user, string password, string database, ushort port, SvrCapFlags capFlags, void delegate(Connection) onNewConnection)
- this(string host, string user, string password, string database, ushort port, void delegate(Connection) onNewConnection)
- this(string connStr, uint maxConcurrent, SvrCapFlags capFlags, void delegate(Connection) onNewConnection)
- this(string connStr, SvrCapFlags capFlags, void delegate(Connection) onNewConnection)
- this(string connStr, void delegate(Connection) onNewConnection)
mysql pool MySQLPool
constructorsfunctionsproperties
Sets up a connection pool with the provided connection settings.
The optional onNewConnection param allows you to set a callback which will be run every time a new connection is created.