From: | "Jasbinder Bali" <jsbali(at)gmail(dot)com> |
---|---|
To: | "Michael Fuhr" <mike(at)fuhr(dot)org> |
Cc: | pgsql-general(at)postgresql(dot)org, pgsql-novice(at)postgresql(dot)org |
Subject: | Re: [NOVICE] DB insert Error |
Date: | 2006-08-16 20:12:45 |
Message-ID: | a47902760608161312i1b0d2613h85ac8520feea2453@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-novice |
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(at)fuhr(dot)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
>
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Fuhr | 2006-08-16 20:15:39 | Re: plpgsql dynamic queries and optional arguments |
Previous Message | Jasbinder Bali | 2006-08-16 20:11:23 | Re: [NOVICE] DB insert Error |
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Fuhr | 2006-08-16 20:42:27 | Re: [NOVICE] DB insert Error |
Previous Message | Jasbinder Bali | 2006-08-16 20:11:23 | Re: [NOVICE] DB insert Error |