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

Compare with Current View Page History

« Previous Version 2 Current »

C Example 1
Define fields using a list.
BOOL fOK;
int  iSession;
 
fOK = LceUseField(iSession, "EMPNO, GIVENAME, SURNAME, ADDRESS1");
 
C Example 2
Define fields individually.
fOK = LceUseField(iSession, "EMPNO");
fOK = LceUseField(iSession, "GIVENAME");
fOK = LceUseField(iSession, "SURNAME");
fOK = LceUseField(iSession, "ADDRESS1");

  • No labels