PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Identitiy Fields problems with PostgreSQL
Identitiy Fields problems with PostgreSQL
Iniciado por Antonio Díaz, 02,feb. 2024 21:09 - 2 respuestas
Miembro registrado
71 mensajes
Popularité : +2 (2 votes)
Publicado el 02,febrero 2024 - 21:09
Hi, I am not an experienced windev user (yet). I have a postgresql db. When adding a record through a form, the identity field is not being incremented, so I get the duplicate error (identity field value is 0, the first add was ok since 0 value didn't exist).

I went to pg admin and typed an INSERT statement and the field was incremented without issues. Is there something I should consider in the analysis that I might be missing? I thank you in advance.

--

Antonio Diaz
Emphasys Software, S.C.
Publicado el 06,febrero 2024 - 11:15
Bonjour .

la colonne doit être de type bigserial NOT NULL UNIQUE
Postrges créera la séquence et la contrainte PK
Miembro registrado
71 mensajes
Popularité : +2 (2 votes)
Publicado el 07,febrero 2024 - 03:51
Thank you, I will try that...

--

Antonio Diaz
Emphasys Software, S.C.