Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

[ Image Removed |../../index.htm#lansa/srvgudba_0530.htm]
You are here:

...

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");
 
[ Image Removed |../../index.htm#lansa/srvgudba_0530.htm]