PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Identitiy Fields problems with PostgreSQL
Identitiy Fields problems with PostgreSQL
Débuté par Antonio Díaz, 02 fév. 2024 21:09 - 2 réponses
Membre enregistré
71 messages
Posté le 02 février 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.
Posté le 06 février 2024 - 11:15
Bonjour .

la colonne doit être de type bigserial NOT NULL UNIQUE
Postrges créera la séquence et la contrainte PK
Membre enregistré
71 messages
Posté le 07 février 2024 - 03:51
Thank you, I will try that...

--

Antonio Diaz
Emphasys Software, S.C.