https://cpdb.ppcompiler.org/
Introduction
Dans la version courante, 4 types de champs sont supportés :
Lecture d'un champ de type Chaine
Utilisez l'exemple suivant :
Err err; |
Important : La fonction CPDB_LireChaine alloue la mémoire pour vous, vous devez donc libérer la mémoire après utilisation.
Lecture d'un champ numérique
Utilisez l'exemple suivant :
Entier court :
Int8 int8; err = CPDB_LireEntierCourt(hOREST, "NOMDUCHAMPS", &int8);
Entier :
Int16 int16; err = CPDB_LireEntier(hOREST, "NOMDUCHAMPS", &int16);
Entier long :Int32 int32; err = CPDB_LireEntierLong(hOREST, "NOMDUCHAMPS", &int32);
Plus d'information