Return connection settings. :return: :class:`~asyncpg.ConnectionSettings`.
(self)
| 270 | return self._server_version |
| 271 | |
| 272 | def get_settings(self): |
| 273 | """Return connection settings. |
| 274 | |
| 275 | :return: :class:`~asyncpg.ConnectionSettings`. |
| 276 | """ |
| 277 | return self._protocol.get_settings() |
| 278 | |
| 279 | def transaction(self, *, isolation=None, readonly=False, |
| 280 | deferrable=False): |
no outgoing calls