Re: auto_increment

From: Richard Huxton <dev(at)archonet(dot)com>
To: "Muhyiddin A(dot)M Hayat" <middink(at)indo(dot)net(dot)id>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: auto_increment
Date: 2003-09-20 10:05:30
Message-ID: 200309201105.30370.dev@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Saturday 20 September 2003 09:43, Muhyiddin A.M Hayat wrote:
> Ok, but if i do rollback, the auto_increment don't roolback.

It's not supposed to.

> How to use nextval(), currval() and setval() functions.

Something like:
INSERT INTO my_table(nextval('my_sequence_name'),'aaa',1);
But you'll get the same problem.

What are you trying to do with the auto-increment? If you want to guarantee
that the numbers go up in sequence and have no gaps (e.g. 1,2,3,4,5 NOT
1,2,4,6) then you'll need to do some more work.

Think about what you want to have happen when three clients insert rows at the
same time and one rolls back. Once you've decided what you want, ask again if
you need some help.

--
Richard Huxton
Archonet Ltd

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Muhyiddin A.M Hayat 2003-09-20 10:14:38 Re: auto_increment
Previous Message Muhyiddin A.M Hayat 2003-09-20 08:43:10 Re: auto_increment