1

我从一个 mySQL 数据库中收到了一个元组列表。
当我尝试打印一个项目时,结果如下:

Далоев ÐлекÑандр
<class 'str'>

这是 cp1251,根据https://2cyr.com/decode/?lang=ru

我尝试了很多.encode().decode()with errors='ignore'params 的变体,但没有任何成功。有任何想法吗?

UPD 我收到了我的元组列表mysql-connector-python

z是列表。上面的结果来自z[0][0]

def select_name(add):
z = []
try:
    dbconfig = read_db_config()
    conn = MySQLConnection(**dbconfig)
    cursor = conn.cursor()
    cursor.execute("select name from phone_add where ph_add = " + str(add) + ";")

    row = cursor.fetchone()
    while row is not None:
        z.append(row)
        row = cursor.fetchone()
    return z

except Error as e:
    print(e)

finally:
    cursor.close()
    conn.close()

Upd2 这是一个奇怪的解码器。希望它会帮助smb。

我意识到问题在于插入我的数据库。会在这里挖。

q = string

codings = ['latin1', 'utf8', 'cp1251', 'unicode-escape', 'cp866']
exceptions = ['ignore', 'strict', 'xmlcharrefreplace', 'backslashreplace']
for i in codings:
    for j in codings:
        for z in exceptions:
            for p in exceptions:
                try:
                    print(q.encode(i, errors=z).decode(j, errors=p) + '<------' + i + ' ' + j + ' ' + z + ' ' + p)
                except:
                    pass
4

1 回答 1

0

问题出在数据库中。刺痛在插入过程中已经损坏。我尝试mysql_set_charset('utf8');了插入脚本,一切顺利。

于 2017-01-21T23:57:03.977 回答