使用 Python 从 MS SQL Server 读取 zlib/gzip 压缩数据
我正在使用 Python 2.6 从 SQL Server 读取数据。我陷入困境,因为我的数据库中的一列是 varbinary。我使用的是pyodbc,Python程序中的数据类型是“buffer”。
现在,数据库中的这一列存储 gzip 压缩文本。如果可以访问“缓冲区”数据类型,我无法弄清楚如何从 Python 中解压缩它。
有什么帮助/指点吗?
这就是我正在做的事情,
con = pyodbc.connect(...)
cursor = con.cursor()
cursor.execute('select ...')
row = cursor.fetchone()
if row:
x = row.varbinary_column_name
asciistring = zlib.decompress(x) # throws zlib.error: Error -3 while
# decompressing data: incorrect header check
提前致谢!
I'm using Python 2.6 to read data from SQL Server. I'm stuck because a column in my DB is varbinary. I'm using pyodbc, and the data type in the Python program is "buffer".
Now, this column in the DB stores gzip compressed text. I'm unable to figure out how to decompress this from Python, given access to the 'buffer' data type.
Any help/pointers please?
This is what I'm doing
con = pyodbc.connect(...)
cursor = con.cursor()
cursor.execute('select ...')
row = cursor.fetchone()
if row:
x = row.varbinary_column_name
asciistring = zlib.decompress(x) # throws zlib.error: Error -3 while
# decompressing data: incorrect header check
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作:
zlib
流通常以 3 个字节的x\x9cc
开头。gzip
流始终以 2 字节\x1f\x8b
开头。你有什么?根据您的评论,结果是
'+J\xcd'
。这似乎不是zlib
或gzip
。你有什么文件?您有创建该数据的源代码吗?Do this:
A
zlib
stream typically starts with the 3 bytesx\x9cc
. Agzip
stream always starts with the 2 bytes\x1f\x8b
. What do you have?According to your comment, the resul was
'+J\xcd'
. This doesn't appear to bezlib
orgzip
. What documentation do you have? Do you have source code for whatever created that data?