A Driver creates and releases database connections and is also responsible for connection pooling (if the dialect supports pooling).
Acquires a new connection from the pool.
Begins a transaction.
Commits a transaction.
Destroys the driver and releases all resources.
Initializes the driver.
After calling this method the driver should be usable and acquireConnection etc. methods should be callable.
acquireConnection
Releases a connection back to the pool.
Rolls back a transaction.
Generated using TypeDoc
A Driver creates and releases database connections and is also responsible for connection pooling (if the dialect supports pooling).