pool property
MssqlConnectionPool?
pool
final
The pool behind session, when this database was built with withPool.
Null for a connection-backed database. transaction uses it to hold one lease for the whole callback; without it a pooled database could only run each statement on its own lease, which is not a transaction.
Implementation
final MssqlConnectionPool? pool;