5

我正在从 sqlite3 数据库中读取记录。数据以文本形式存储在数据库中,但是我正在取回缓冲区(它们是 Unicode 格式,我找不到任何东西似乎可以将它们转换为可用的文本(无论是否为 Unicode))

为了使它工作,我必须在 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
(<read-write buffer ptr 0x0276A890, size 24 at 0x0276A870>,)
C a c h e  R e c o r d 
<type 'buffer'>
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
<type 'unicode'>
Cache Record
Cache Record

注意:CAST 之前的“缓存记录”字母之间的空格是空值。

谢谢。

4

2 回答 2

5

尝试:

print str(row[0]).decode('utf-16le')
于 2012-09-27T19:13:13.593 回答
0

如何将数据插入到您的"Internet Explorer History"表中?我敢打赌,它是作为二进制对象(例如 Python 类型缓冲区)插入的,所以 SQLite 将它作为 blob 而不是文本返回。

尝试插入正确的 unicode 对象,然后执行相同的查询并检查其输出。

于 2014-07-14T15:27:34.903 回答