Re: [GENERAL] how to insert from sequence

From: Alain TESIO <alain_tesio(at)yahoo(dot)com>
To: soundar rajan <psrajan(at)yahoo(dot)com>, pgsql-general(at)postgreSQL(dot)org
Subject: Re: [GENERAL] how to insert from sequence
Date: 1999-10-27 15:22:33
Message-ID: 19991027152233.16641.rocketmail@web308.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> Hi all,
>
> I need help in inserting a value from sequence. My
> code goes like this (from Java). I do face a syntax
> level problem.
>
> statement.execute("insert into T_name (id) values (" +
> nextval('s_name') + ")");
>
> Thanks in advance for the help.

nextval is a sql function, not java so it must be sent inside
the string to execute :

statement.execute("insert into T_name (id) values
(nextval('s_name'))");

Alain

__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

Browse pgsql-general by date

  From Date Subject
Next Message Aaron J. Seigo 1999-10-27 15:39:10 Re: [GENERAL] FW: inheritance of functions
Previous Message Ross J. Reedstrom 1999-10-27 15:09:13 Re: [GENERAL] QUERY PLAN: