(self)
| 635 | yield from self._columns(kinds=["v", "m"]) |
| 636 | |
| 637 | def databases(self): |
| 638 | with self.conn.cursor() as cur: |
| 639 | _logger.debug("Databases Query. sql: %r", self.databases_query) |
| 640 | cur.execute(self.databases_query) |
| 641 | return [x[0] for x in cur.fetchall()] |
| 642 | |
| 643 | def full_databases(self): |
| 644 | with self.conn.cursor() as cur: |