Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: Error for insert large object



Lemaire Vincent wrote:
Hello all world,
I work on a project c# with a postgresql database. The communication is made
by the odbc driver. The select command is OK but I have a problem for insert
an Image in my table.

The script of creation of my table is as follows:

CREATE TABLE images

(

  id_image int4 NOT NULL,

  image bytea,

  CONSTRAINT id_image PRIMARY KEY (id_image)

)
WITH OIDS;

ALTER TABLE images OWNER TO postgres;

When I want insert data, I have an error how is generate by de odbc driver.
This error is "type "lo" does not exist

Please check the bytea as LO option.

regards,
Hiroshi Inoue



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group