Re: [NOVICE] DB insert Error - Mailing list pgsql-general

From Jasbinder Bali
Subject Re: [NOVICE] DB insert Error
Date
Msg-id a47902760608161312i1b0d2613h85ac8520feea2453@mail.gmail.com
Whole thread Raw
In response to Re: [NOVICE] DB insert Error  (Michael Fuhr <mike@fuhr.org>)
List pgsql-general
This is the create table statement..

CREATE TABLE raw_email
(
  id int4 NOT NULL,
  raw_email varchar,
  parsed_flag bool NOT NULL DEFAULT false,
  CONSTRAINT pk_rawemail PRIMARY KEY (id)
)
WITHOUT OIDS;
ALTER TABLE raw_email OWNER TO postgres;





On 8/16/06, Michael Fuhr <mike@fuhr.org> wrote:
On Wed, Aug 16, 2006 at 02:42:46PM -0400, Jasbinder Bali wrote:
> Tried everthing but nothing seems to work.
> :(

Could you provide a simplified but complete example that shows what
you're doing?  That is, all SQL statements and C code necessary to
create a table and whatever functions you're using.  I've done a
little testing and haven't been able to reproduce your results, so
apparently my tests don't match what you're doing.

--
Michael Fuhr

pgsql-general by date:

Previous
From: "Jasbinder Bali"
Date:
Subject: Re: [NOVICE] DB insert Error
Next
From: Michael Fuhr
Date:
Subject: Re: plpgsql dynamic queries and optional arguments