Serial Auto Increment - Mailing list pgsql-interfaces

From PostgreSQL Admin
Subject Serial Auto Increment
Date
Msg-id 199904262302.TAA30762@Mythos.Org
Whole thread Raw
List pgsql-interfaces
Let me give a simple example of what I am trying to do:

CREATE SEQUENCE "usernumber" start 0 increment 1;

Create table users (
    name    varchar(255),
    userid    int4 DEFAULT nextval ( 'usernumber' ) NOT NULL);
);

>From Borland C++ Builder I create a form with a
link to the table userid and a navigator bar and a DBedit object linked
to the field userid.

When I post new record, an error is returned that users.name cannot be
null, which is true.  Is there a way to make Borland C++ Builder only
update the field "name" and let Postgresql take care of the
updating the serial field "userid"

Thanks,
    Travis

pgsql-interfaces by date:

Previous
From: nico@clubdelphi.com (Nicolas Aragon)
Date:
Subject: [INTERFACES] win32 libpq version is "too new"
Next
From: PostgreSQL Admin
Date:
Subject: Serial Auto Increment Field and Borland C Builder