(self)
| 62 | return TransactionContextPooled(TransactionWrapper(self), self._pool_init_lock) |
| 63 | |
| 64 | def acquire_connection(self) -> ConnectionWrapper | PoolConnectionWrapper: |
| 65 | return OraclePoolConnectionWrapper(self, self._pool_init_lock) |
| 66 | |
| 67 | async def db_create(self) -> None: |
| 68 | await self.create_connection(with_db=False) |
no test coverage detected