Initialize the connection, authenticate and select a database
(self)
| 459 | return self.protocol |
| 460 | |
| 461 | async def on_connect(self) -> None: |
| 462 | """Initialize the connection, authenticate and select a database""" |
| 463 | await self.on_connect_check_health(check_health=True) |
| 464 | |
| 465 | async def on_connect_check_health(self, check_health: bool = True) -> None: |
| 466 | self._parser.on_connect(self) |
no test coverage detected