exception: TypeError: ord() expected a character, but string of length 0 found
(self)
| 62 | cur.execute("select * from information_schema.tables") |
| 63 | |
| 64 | def test_issue_6(self): |
| 65 | """exception: TypeError: ord() expected a character, but string of length 0 found""" |
| 66 | # ToDo: this test requires access to db 'mysql'. |
| 67 | kwargs = self.databases[0].copy() |
| 68 | kwargs["database"] = "mysql" |
| 69 | conn = pymysql.connect(**kwargs) |
| 70 | c = conn.cursor() |
| 71 | c.execute("select * from user") |
| 72 | conn.close() |
| 73 | |
| 74 | def test_issue_8(self): |
| 75 | """Primary Key and Index error when selecting data""" |