You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

BOOL           fOK;
int            iSession;
unsigned long  lFlags;
 
fOK = LceSetFieldValue(iSession, "EMPNO", "12345");
fOK = LceFetch(iSession, "SURNAME, GIVENAME", "PSLMST", "EMPNO");
if (fOK)
{
         fOK = LceGetFieldValueX(iSession, "SURNAME", strLastName, &lFlags);
         fOK = LceGetFieldValueX(iSession, "GIVENAME", strFirstName, &lFlags);
}
 

  • No labels