コード例 #1
0
ファイル: msgout.cs プロジェクト: JordanChin/Ingres
 /*
 ** Name: write
 **
 ** Description:
 **	Write a SqlTinyInt data value to the current input message.
 **
 **	A SqlTinyInt data value is composed of a data indicator byte
 **	which, if not NULL, may be followed by a one byte integer.
 **
 ** Input:
 **	value	SQL data value.
 **
 ** Output:
 **	None.
 **
 ** Returns:
 **	void.
 **
 ** History:
 **	 1-Dec-03 (gordy)
 **	    Created.
 */
 public void write(SqlTinyInt value)
 {
     if (writeSqlDataIndicator(value)) write(value.get());
     return;
 }