Пример #1
0
 /*
 ** Name: readSqlData
 **
 ** Description:
 **	Reads a SqlBigInt data value from the current input message.
 **
 **	A SqlBigInt data value is composed of a data indicator byte
 **	which, if not NULL, may be followed by a eight byte integer.
 **
 ** Input:
 **	None.
 **
 ** Output:
 **	value	SQL data value.
 **
 ** Returns:
 **	void.
 **
 ** History:
 **	22-Sep-03 (gordy)
 **	    Created.
 */
 public void readSqlData( SqlBigInt value )
 {
     if ( readSqlDataIndicator() )	// Read data indicator byte.
         value.set( readLong() );	// Read data value.
     else
         value.setNull();		// NULL data value.
     return;
 }