(self, db: str)
| 573 | _logger.debug("Current connection id: %s", self.connection_id) |
| 574 | |
| 575 | def change_db(self, db: str) -> None: |
| 576 | assert isinstance(self.conn, Connection) |
| 577 | self.conn.select_db(db) |
| 578 | self.dbname = db |
| 579 | |
| 580 | @staticmethod |
| 581 | def _connect_sandbox(conn: Connection) -> None: |