(self, args, timeout=-1)
| 57 | |
| 58 | class Database(): |
| 59 | def __init__(self, args, timeout=-1): |
| 60 | self.args = args |
| 61 | self.conn = self.resetConn(timeout) |
| 62 | |
| 63 | # self.schema = self.compute_table_schema() |
| 64 | |
| 65 | def resetConn(self, timeout=-1): |
| 66 | if self.args.dbtype == 'mysql': |