I'm trying to get UTF-8 data from CUBRID using python DB API like followings.
con = CUBRIDdb.connect("CUBRID:localhost:30000:yoondb:::","public");
cur = con.cursor();
qry = "select * from log";
cur.execute(qry)
print cur.fetchall()
and i wrote down python xxx.py in linux command line to execute it.
but it only shows code like below.
\uac80\uc0c9\uc5b4\uc5d0 \\r
i set utf-8 encoding when i installed CUBRID and i'm using Linux with LANG=ko_KR.utf8