Re: NULLs in ecpg

From: <wespvp(at)syntegra(dot)com>
To: Edmund Bacon <ebacon(at)onesystem(dot)com>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: NULLs in ecpg
Date: 2004-07-16 16:25:59
Message-ID: BD1D6BC7.F3B8%wespvp@syntegra.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On 7/16/04 11:11 AM, "Edmund Bacon" <ebacon(at)onesystem(dot)com> wrote:

> Indicators works as expected. e.g.:
>
> EXEC SQL INSERT INTO sometable
> VALUES (:v1 :v1_ind, 'foo', :v2 :v2_ind);

Hmm. I tried that. Just tried it again and it worked. Must have had a
typo before. Sorry.

What about if I have something like:

... VALUES (TO_TIMESTAMP(:expirationDate, 'YYYYMMDDHH24MISS'), 'foo', :v2)

How can I insert NULLS for expirationDate when there's a function in the
way? Using

... VALUES (TO_TIMESTAMP(:expirationDate, 'YYYYMMDDHH24MISS') :ind1, ...

won't work.

Wes

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Edmund Bacon 2004-07-16 16:39:19 Re: NULLs in ecpg
Previous Message Edmund Bacon 2004-07-16 16:11:06 Re: NULLs in ecpg