存储过程参数的类型取值如下:
– public final static byte DT_DEFAULT = (byte) 0; |
//默认,自动识别 |
– public final static byte DT_INT = (byte) 1; |
//32位整数 |
– public final static byte DT_LONG = (byte) 2; |
//64位长整数 |
– public final static byte DT_SHORT = (byte) 3; |
//16位短整数 |
– public final static byte DT_BIGINT = (byte) 4; |
//大整数 |
– public final static byte DT_FLOAT = (byte) 5; |
//32位浮点数 |
– public final static byte DT_DOUBLE = (byte) 6; |
//64位双精度浮点数 |
– public final static byte DT_DECIMAL = (byte) 7; |
//十进制长实数 |
– public final static byte DT_DATE = (byte) 8; |
//日期 |
– public final static byte DT_TIME = (byte) 9; |
//时间 |
– public final static byte DT_DATETIME = (byte) 10; |
//日期时间 |
– public final static byte DT_STRING = (byte) 11; |
//字符串 |
– public final static byte DT_BOOLEAN = (byte) 12; |
//布尔值 |
|
|
– public final static byte DT_INT_SERIES = (byte) 51; |
//整数序列 |
– public final static byte DT_LONG_SERIES = (byte) 52; |
//长整数序列 |
– public final static byte DT_SHORT_SERIES = (byte) 53; |
//短整数序列 |
– public final static byte DT_BIGINT_SERIES = (byte) 54; |
//大整数序列 |
– public final static byte DT_FLOAT_SERIES = (byte) 55; |
//浮点数序列 |
– public final static byte DT_DOUBLE_SERIES = (byte) 56; |
//双精度浮点数序列 |
– public final static byte DT_DECIMAL_SERIES = (byte) 57; |
//长实数序列 |
– public final static byte DT_DATE_SERIES = (byte) 58; |
//日期序列 |
– public final static byte DT_TIME_SERIES = (byte) 59; |
//时间序列 |
– public final static byte DT_DATETIME_SERIES = (byte) 60; |
//日期时间序列 |
– public final static byte DT_STRING_SERIES = (byte) 61; |
//字符串序列 |
– public final static byte DT_BYTE_SERIES = (byte) 62; |
//字节序列 |
|
|
– public final static byte DT_CURSOR = (byte) 101; |
//游标 |
– public final static byte DT_AUTOINCREMENT = (byte) 102; |
//自增长字段 |