What Data Types Are Supported in SVB?
STATISTICA Visual Basic supports several data types including Double, Integer, Long, Boolean, String, Variant, and Object. The Double data type and the Integer and Long data types are probably the ones most commonly used in computations. Variables declared as Double can hold (store) real numbers, approximately in the range from +/-1.7E +/- 308 (approximately 15 digits of precision); variables declared as Integer can hold (store) integer numbers in the range from -32,768 to 32,767, and Long variables can hold (store) integer numbers in the range from -2,147,483,648 to 2,147,483,647; other common data types are Boolean (True [1] or False [0]) and String (a string variable of arbitrary length). Refer to the Electronic Manual for a description of all data types. Declaring variables.