can you please report this as a bug in MySQL 1.2.3b1. The exception
raised looks like this in pdb:
ProgrammingError(ProgrammingError(1146, "Table 'test.t1' doesn't
exist"),)
i.e., it raises a ProgrammingError, where first argument is in fact
another instance of ProgrammingError. We can work around this in
the MySQL dialect but I would rather wait until a final version of
1.2.3 is released, hopefully with this bug fixed. this is how it
should look:
ProgrammingError(1146, "Table 'test.t1' doesn't exist")
(Pdb) e.args
(1146, "Table 'test.t1' doesn't exist")
On Mar 6, 2009, at 6:13 AM, Ben Cheng wrote:
>