Re: Binary data in PostgreSQL - Mailing list pgsql-general

From Bas Scheffers
Subject Re: Binary data in PostgreSQL
Date
Msg-id 10408.80.177.109.207.1077444581.squirrel@io.scheffers.net
Whole thread Raw
In response to Binary data in PostgreSQL  (Holger Marzen <holger@marzen.de>)
List pgsql-general
Although I am not using it for massive files (small jpegs with people's
mugshots) I have been storing them in a bytea column without problems.

I am using Tcl in AOLserver and it is easy to insert and retrieve the
files. To insert/update, you use hex encoded files, so simply do:
"binary scan $binaryString H* hexdata" to get the hex string and in the
SQL you simply use "decode('$hexdata', 'hex')" as value.

When you retrieve the data, the encoding is a bit, well, weird. (see the
manual) but because it is using backslash escaping of special character
into they ascii values, in Tcl it is dead easy to convert back to binary
data:
set bindata [subst -novariables -nocommands $pgdata].

Hope that helps,
Bas.

pgsql-general by date:

Previous
From: Jonathan Bartlett
Date:
Subject: Re: Binary data in PostgreSQL
Next
From: greg@turnstep.com
Date:
Subject: DBD::Pg 1.32 ready for testing