psql '\copy' command for writing binary data from BYTEA column to file - Mailing list pgsql-general

From Julia Jacobson
Subject psql '\copy' command for writing binary data from BYTEA column to file
Date
Msg-id 4C8272C4.1000008@arcor.de
Whole thread Raw
Responses Re: psql '\copy' command for writing binary data from BYTEA column to file  (Merlin Moncure <mmoncure@gmail.com>)
List pgsql-general
Hello everybody out there using PostgreSQL,
One of the tables in my database contains pictures in jpeg format in a
column of the type BYTEA.
I have written a script in Python for inserting pictures into the
database as well as exporting them from the database later. It works fine.
When running psql in Windows XP (PostgreSQL Version 8.3 on client, same
on server) with the command
"\copy BINARY (SELECT picture FROM my_table LIMIT 1) TO picture.jpg;",
I get a corrupted image file, which can't be displayed or opened by any
software.
The official documentation
(http://www.postgresql.org/docs/8.3/interactive/sql-copy.html) contains
a nice explanation for that:
"The file format used for COPY BINARY changed in PostgreSQL 7.4. The new
format consists of a file header, zero or more tuples containing the row
data, and a file trailer. Headers and data are now in network byte
order. [...]
The file header consists of 15 bytes of fixed fields, followed by a
variable-length header extension area."
I mean, the insertion of a header and a trailer probably destroys the
jpeg format of the binary data.
Could anyone help me to find a way for writing the binary data from a
BYTEA field to a file on the client?
Thanks in advance,
Julia

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: How to restore a Plan from a stored plan text?
Next
From: yj2133011
Date:
Subject: Re: On-disk size of db increased after restore