From: Jason Kirtland Date: Sun, 29 Jul 2007 05:49:55 +0000 (+0000) Subject: Finish table_names. X-Git-Tag: rel_0_4beta1~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9cc90bbdc24f8d4d0429468404cd43de46fc07f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Finish table_names. --- diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py index 8598466366..53ef1a95b2 100644 --- a/lib/sqlalchemy/databases/mysql.py +++ b/lib/sqlalchemy/databases/mysql.py @@ -1092,8 +1092,10 @@ class MySQLDialect(ansisql.ANSIDialect): return name def table_names(self, connection, schema): - s = "SHOW TABLES" - return [row[0] for row in connection.execute(s)] + charset = self._detect_charset(connection) + rp = connection.execute("SHOW TABLES FROM %s" % + self.preparer().quote_identifier(schema)) + return [row[0] for row in _compat_fetchall(rp, charset=charset)] def has_table(self, connection, table_name, schema=None): # SHOW TABLE STATUS LIKE and SHOW TABLES LIKE do not function properly