Print data from all database tables
(self)
| 186 | return self.get_table(table_name).parse() |
| 187 | |
| 188 | def print_database(self): |
| 189 | """ |
| 190 | Print data from all database tables |
| 191 | """ |
| 192 | table_names = self.catalog |
| 193 | for table_name in table_names: |
| 194 | table = self.parse_table(table_name) |
| 195 | if not table: |
| 196 | continue |
| 197 | print(f'TABLE NAME: {table_name}\r\n') |
| 198 | print(tabulate(table, headers="keys", disable_numparse=True)) |
| 199 | print('\r\n\r\n\r\n\r\n') |
| 200 | |
| 201 | |
| 202 | class AccessTable(object): |
no test coverage detected