Пример #1
0
 /*
 ** Name: write
 **
 ** Description:
 **	Write a SqlDate data value to the current input message.
 **
 **	A SqlDate data value is composed of a data indicator byte
 **	which, if not NULL, may be followed by a string which is
 **	composed of a two byte integer indicating the byte length
 **	of the string followed by a character byte array of the
 **	indicated length.
 **
 ** Input:
 **	value	SQL data value.
 **
 ** Output:
 **	None.
 **
 ** Returns:
 **	void.
 **
 ** History:
 **	19-Jun-06 (gordy)
 **	    Created.
 */
 public void write(SqlDate value)
 {
     if (writeSqlDataIndicator(value)) write(value.get());
     return;
 }