:: org :: openoffice :: vba :: Excel ::

constants group XlParameterDataType

Constants
xlParameterTypeBigInt  
xlParameterTypeBinary  
xlParameterTypeBit  
xlParameterTypeChar  
xlParameterTypeData  
xlParameterTypeDecimal  
xlParameterTypeDouble  
xlParameterTypeFloat  
xlParameterTypeInteger  
xlParameterTypeLongVarBinary  
xlParameterTypeLongVarChar  
xlParameterTypeNumeric  
xlParameterTypeReal  
xlParameterTypeSmallInt  
xlParameterTypeTime  
xlParameterTypeTimestamp  
xlParameterTypeTinyInt  
xlParameterTypeUnknown  
xlParameterTypeVarBinary  
xlParameterTypeVarChar  
xlParameterTypeWChar  
Constants' Details
xlParameterTypeBigInt
const long xlParameterTypeBigInt = -5;
xlParameterTypeBinary
const long xlParameterTypeBinary = -2;
xlParameterTypeBit
const long xlParameterTypeBit = -7;
xlParameterTypeChar
const long xlParameterTypeChar = 1;
xlParameterTypeData
const long xlParameterTypeData = 9;
xlParameterTypeDecimal
const long xlParameterTypeDecimal = 3;
xlParameterTypeDouble
const long xlParameterTypeDouble = 8;
xlParameterTypeFloat
const long xlParameterTypeFloat = 6;
xlParameterTypeInteger
const long xlParameterTypeInteger = 4;
xlParameterTypeLongVarBinary
const long xlParameterTypeLongVarBinary = -4;
xlParameterTypeLongVarChar
const long xlParameterTypeLongVarChar = -1;
xlParameterTypeNumeric
const long xlParameterTypeNumeric = 2;
xlParameterTypeReal
const long xlParameterTypeReal = 7;
xlParameterTypeSmallInt
const long xlParameterTypeSmallInt = 5;
xlParameterTypeTime
const long xlParameterTypeTime = 10;
xlParameterTypeTimestamp
const long xlParameterTypeTimestamp = 11;
xlParameterTypeTinyInt
const long xlParameterTypeTinyInt = -6;
xlParameterTypeUnknown
const long xlParameterTypeUnknown = 0;
xlParameterTypeVarBinary
const long xlParameterTypeVarBinary = -3;
xlParameterTypeVarChar
const long xlParameterTypeVarChar = 12;
xlParameterTypeWChar
const long xlParameterTypeWChar = -8;
Top of Page