XlParameterDataType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the data type of a query parameter.
public enum class XlParameterDataType
public enum XlParameterDataType
Public Enum XlParameterDataType
- Inheritance
-
XlParameterDataType
Fields
Name | Value | Description |
---|---|---|
xlParamTypeWChar | -8 | Unicode character string. |
xlParamTypeBit | -7 | Bit. |
xlParamTypeTinyInt | -6 | Tiny integer. |
xlParamTypeBigInt | -5 | Big integer. |
xlParamTypeLongVarBinary | -4 | Long binary. |
xlParamTypeVarBinary | -3 | Variable-length binary. |
xlParamTypeBinary | -2 | Binary. |
xlParamTypeLongVarChar | -1 | Long string. |
xlParamTypeUnknown | 0 | Type unknown. |
xlParamTypeChar | 1 | String. |
xlParamTypeNumeric | 2 | Numeric. |
xlParamTypeDecimal | 3 | Decimal. |
xlParamTypeInteger | 4 | Integer. |
xlParamTypeSmallInt | 5 | Small integer. |
xlParamTypeFloat | 6 | Float. |
xlParamTypeReal | 7 | Real. |
xlParamTypeDouble | 8 | Double. |
xlParamTypeDate | 9 | Date. |
xlParamTypeTime | 10 | Time. |
xlParamTypeTimestamp | 11 | Time stamp. |
xlParamTypeVarChar | 12 | Variable-length string. |