0
我在python中使用下面的代碼,它似乎是返回「名稱」作爲問號,因爲名稱是俄語。任何幫助將非常感激。Python Mysqldb返回問號
import MySQLdb
db = MySQLdb.connect(host="localhost", user="root",passwd="*****")
cur = db.cursor()
cur.execute("USE WebCorpusStatus;")
cur.execute("SELECT Name, Source, Date(dateScraped) FROM russian WHERE status = 1;")
for row in cur:
print row
我試過,但它仍然無法正常工作。我想用俄語的charset ='koi8r',但它給了我以下錯誤:LookupError:未知編碼:koi8r – gkumar7
@ compsci101:嘗試'koi8_r'。 – unutbu
unutbu - 錯誤:_mysql_exceptions.OperationalError:(2019,「無法初始化字符集koi8_r(路徑:/ usr/share/mysql/charsets /)」) – gkumar7