我在我的Python代碼中使用一個名爲Storm的活動記錄來檢索MySQL數據庫上的一些記錄。python enconding mysql
問題是:我的表在'utf8_unicode_ci'中,但是當我檢索到對象時我得到'latin-1'屬性,所以我需要做object.attr.decode('latin-1')。encode ('utf-8'),這並不總是有效 - 拋出一些例外。
我的問題:這是一個python行爲?一個MySQL的行爲?與風暴有關的東西?
代碼:
Storm.conn(user=db_user,db=db_name, passwd=db_passwd)
events = Event.select('*',status='=2',date_end='>=NOW()')
for event in events:
now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M")
try:
#here we need only utf-8 strings
conn.index({"title": event.get_title(), "local": event.get_local(), "url": event.getUrl(), "description": event.get_description(), "artists": event.get_artists(), "tags": event.get_tags(), "picture": event.get_Picture(), "type": event.get_type(), 'date_begin': event.get_date_begin(), 'date_end': event.get_date_end(), '_ttl': event.get_ttl()}, "wf", "event", event.id)
print 'Indexed - '+now+': '+str(event.id)
except Exception,error:
print 'Error - '+now+': '+str(event.id)+" - "+str(error)
「#我們只需要utf-8字符串」你剛剛失去了遊戲。 **始終使用'unicode's。** –
@ IgnacioVazquez-Abrams UTF-8不是Unicode? http://en.wikipedia.org/wiki/Unicode – thalesfc
不,它不是。它**尤其**與'unicode'無關。 –