当前位置:  开发笔记 > 编程语言 > 正文

SQLite返回无法转换为可用字符串的Unicode缓冲区

如何解决《SQLite返回无法转换为可用字符串的Unicode缓冲区》经验,为你挑选了1个好方法。

我正在读取sqlite3数据库中的记录.数据作为TEXT存储在数据库中,但是我正在获取缓冲区(使用Unicode并且我找不到任何东西似乎将它们转换为可用文本(Unicode或不是))

为了使它工作,我必须CAST到SQL查询中的TEXT.

我错过了什么?

举个例子:

import sqlite3

con = sqlite3.connect('D:\\test.db' )
cur = con.cursor()


print "Before CAST"
cur.execute('SELECT Type FROM \"Internet Explorer History\" ')
row = cur.fetchone()

print row
print row[0]
print type(row[0])
print str(row[0])
print str(row[0]).encode('utf-8')

print "----------------"

print "After CAST"
cur.execute('SELECT CAST( Type as TEXT) FROM \"Internet Explorer History\" ')
row = cur.fetchone()

print row
print row[0]
print type(row[0])
print str(row[0])
print str(row[0]).encode('utf-8')

这给出了以下输出:

Before CAST
(,)
C a c h e  R e c o r d 

C a c h e  R e c o r d 
C a c h e  R e c o r d 
----------------
After CAST
(u'Cache Record',)
Cache Record

Cache Record
Cache Record

注意:CAST之前的"缓存记录"字母之间的空格为空.

谢谢.



1> Mark Ransom..:

尝试:

print str(row[0]).decode('utf-16le')

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有