Re: Insert image into bytea question - Mailing list pgsql-novice

From Jov
Subject Re: Insert image into bytea question
Date
Msg-id CADyrUxM10gKkhYVyBL_xwhCkjNGYsPetKOfWLPbu5LUKDsdw5g@mail.gmail.com
Whole thread Raw
In response to Re: Insert image into bytea question  (David G Johnston <david.g.johnston@gmail.com>)
List pgsql-novice




2014-05-02 9:39 GMT+08:00 David G Johnston <david.g.johnston@gmail.com>:

Ok, very good, thanks to everyone who replied! I was hoping to see a methos within PostgreSQL itself (via INSERT or something), but I can test out a method using PHP instead, since that's the ultimate destination, anyhow.

Not sure how you expected to be able to issue an INSERT w/o some kind of client interface.  If you need to do this via "psql" (i.e. the official PostgreSQL client) there are ways - though I am not that familiar with them.  Typically I'd store the data into a file then do something like:

\set variable_name `cat filename.ext`
psql variable can only hold text string,so only "cat" do not work here if the ext is jpeg or some other binary file extension.But if we encode the binary to base64 text first,then it will "work" somehow.

I wrote a blog about input and output the bytea as binary file in psql:
 
INSERT INTO tbl (col) VALUES (func_if_needed(:'variable_name'));

In which case you might or might not find it easier to use some text intermediary in order to avoid difficulty with "cat".

However, I assumed you were using something like PHP or Java and that you would most likely want to have any solution be within the same framework...

David J.


View this message in context: Re: Insert image into bytea question

Sent from the PostgreSQL - novice mailing list archive at Nabble.com.

pgsql-novice by date:

Previous
From: "Yuksel Pinarbasi"
Date:
Subject: Database replication method
Next
From: Daniel Staal
Date:
Subject: Re: Database replication method