使用 Python 从 MS SQL Server 读取 zlib/gzip 压缩数据

发布于 2024-10-31 11:32:52 字数 555 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

背叛残局 2024-11-07 11:32:52

执行此操作:

print repr(x[:3])

zlib 流通常以 3 个字节的 x\x9cc 开头。 gzip 流始终以 2 字节 \x1f\x8b 开头。你有什么?

根据您的评论,结果是'+J\xcd'。这似乎不是 zlibgzip。你有什么文件?您有创建该数据的源代码吗?

Do this:

print repr(x[:3])

A zlib stream typically starts with the 3 bytes x\x9cc. A gzip 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 be zlib or gzip. What documentation do you have? Do you have source code for whatever created that data?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文