Re: select on bytea column returns hex encoded data instead of binary data - Mailing list pgsql-novice

From Ganesh Borse
Subject Re: select on bytea column returns hex encoded data instead of binary data
Date
Msg-id CAEhYC0GiU07RtBhARfGSz-BH0JOjBWrQqeV2y6oREDx=iP_8gw@mail.gmail.com
Whole thread Raw
In response to Re: select on bytea column returns hex encoded data instead of binary data  ("ktm@rice.edu" <ktm@rice.edu>)
Responses Re: select on bytea column returns hex encoded data instead of binary data  ("ktm@rice.edu" <ktm@rice.edu>)
List pgsql-novice
Hi,

Thanks for this guidance.

Incidentally this same code (as-is) works well (i.e. fetches the binary data as binary data) with few other different databases like DB2, Oracle, MS-SQL, MYSQL, Sqlite2, Access.

Can this be an issue with Postgresql's ODBC driver? Is there a different forum for PGSQL's ODBC driver?

Or, does postgresql databases does not directly give binary data with query like "select binarycolumn from table" ? Do we need to convert this to binary type while selecting?

Best Regards,
Ganesh

On Wed, Feb 22, 2012 at 10:07 PM, ktm@rice.edu <ktm@rice.edu> wrote:
On Wed, Feb 22, 2012 at 11:02:16AM +0800, Ganesh Borse wrote:
> Hi,
>
> I am new to postgresql.
>
> I've an application which displays the various binary files (like jpgs,
> xls, zips) stored in PostgrelSQL DB in bytea column.
>
> I inserted these files in bytea column in a table using hex encoding.
>
> But, when I try to access this column by executing (SQLExec) the query
> "select * from tablename;" from ODBC on Windows, the buffer contains the
> same hex encoded data.
>
> I am using SQL_C_BINARY data type for SQLBindCol() function.
>
> Can you please help me know, how can I retrieve the data stored in bytea
> columns in binary format?
>
> Thanks in advance for help and guidance.
>
> Best Regards,
> Ganesh

It sounds like ODBC is not using binary mode for the result retrieval but
is using text which results in either hex or escape encoding as you see.
You will need to find someone to help you with ODBC on Windows.

Regards,
Ken

pgsql-novice by date:

Previous
From: "Day, David"
Date:
Subject: Re: psql thinks we should be listening on port 5432
Next
From: Navdeep Singh
Date:
Subject: creating triggers: need help