#
# If it's decided that issuing that sort of SQL leaves you SOL, then
# this can prefer the driver value.
+
+ # set this to None as _fetch_setting attempts to use it (None is OK)
+ self._connection_charset = None
try:
value = self._fetch_setting(connection, "character_set_client")
if value:
)
return "latin1"
+ def _get_server_version_info(self, connection):
+ return MySQLDialect._get_server_version_info(self, connection)
+
def _extract_error_code(self, exception):
m = re.compile(r"\((\d+)\)").search(str(exception.args))
c = m.group(1)