Re: Image Insert Postgresql DB

From: Kenneth Gonsalves <lawgon(at)thenilgiris(dot)com>
To: sreejith s <getsreejith(at)gmail(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Image Insert Postgresql DB
Date: 2004-11-23 05:18:44
Message-ID: 0411231048440L.01150@thenilgiris.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tuesday 23 November 2004 09:51 am, sreejith s wrote:

> Query to insert
> ----------------
> INSERT INTO Imagetable VALUES (lo_import('C:\\image\\peach.jpg'));

have you succeeded in inserting an image into the database from a file on the
server using the above query? AFAIK you need a bytea datatype, and also the
image data has to be properly escaped (\\) before pg will accept it. I assume
you are using a scripting language with a dbapi. Your steps would be:

1. read the image file into a variable
2. escape the image data
3. insert this into the database in a bytea field

if you follow this procedure it is irrelevant as to where the source file is
- client or server

regards
kg

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message sreejith s 2004-11-23 06:50:30 Image Insert Doubt
Previous Message Vishal Kashyap @ [SaiHertz] 2004-11-23 04:37:22 Re: Image Insert Postgresql DB