Sets the value of a specified integer field within a typed buffer. This function can be used to manipulate any of the following predefined buffer types:
FML, FML32
TUXEDO.bdh
TuxSetInt(in hBuffer : number, in nFieldId : number, in nValue : number, in nIndex : number optional): boolean;
true if successful
false otherwise
|
const ID_NUMBERS := 8; ID_SUM := 16; dcltrans transaction TMain var hBuffer, olen, nSum: number; begin Tux_tpbegin(30, 0); // allocate buffer TuxGetBuffer(hBuffer, "FML", NULL, 1024); // store two values in buffer TuxSetInt(hBuffer, ID_NUMBERS, 8, 1); TuxSetInt(hBuffer, ID_NUMBERS, 4, 2); // calculate the sum of both values Tux_tpcall("SUM", hBuffer, 0, hBuffer, olen, TPNOFLAGS); // retrieve result nSum := TuxGetInt(hBuffer, ID_SUM); Tux_tpcommit(0); end TMain;
bankappn.bdf