我正在尝试使用 python DB API 从 CUBRID 获取 UTF-8 数据,如下所示。
con = CUBRIDdb.connect("CUBRID:localhost:30000:yoondb:::","public");
cur = con.cursor();
qry = "select * from log";
cur.execute(qry)
print cur.fetchall()
我在 linux 命令行中写下 python xxx.py 来执行它。
但它只显示如下代码。
\uac80\uc0c9\uc5b4\uc5d0 \\r
我在安装 CUBRID 时设置了 utf-8 编码,并且我正在使用带有 LANG=ko_KR.utf8 的 Linux