Integer
Name: Integer
Type: Integer
Range: -32,768 to 32767
- Read more about Integer
- Log in or register to post comments
Long
Name: Long
Type: Integer
Range: -2,147,483,648 to 2,147,483,647
- Read more about Long
- Log in or register to post comments
Single
Name: Single
Type: Floating point
Range: -3.4 × 1038 to 3.4 × 1038 approximately
Precision: 6 digits
- Read more about Single
- Log in or register to post comments
Double
Name: Double
Type: Floating Point
Rangle: -1.79 × 10308 to 1.79 × 10308 approximately
Precision: 14 digits
- Read more about Double
- Log in or register to post comments
Currency
Name: Currency
Type: Floating Point
Range: -9.22 × 1011 to 9.22 × 1011 approximately
Precision: 4 digits
- Read more about Currency
- Log in or register to post comments
Integers
Numbers with no fractional part.
- Read more about Integers
- Log in or register to post comments
Floating point
String variables are used to hold text data. A fixed-length string can be declared to contain anywhere from 1 to about 64,000 characters. To declare a fixed-length string, use the String keyword followed by the * (asterisk) symbol and the desired size.
- Read more about Floating point
- Log in or register to post comments
String
String variables are used to hold text data. A fixed-length string can be declared to contain anywhere from 1 to about 64,000 characters. To declare a fixed-length string, use the String keyword followed by the * (asterisk) symbol and the desired size.
- Read more about String
- Log in or register to post comments
Date
The term date is used to refer to both dates and times. Dates are represented numerically as floating-point numbers. The integer part of the number represents the date as the number of days since December 30, 1899 (with negative numbers for prior dates), and the fractional part of the number represents the time of day as a fraction of the 24-hour day.
- Read more about Date
- Log in or register to post comments
Object
The Object data type can hold a reference to any object. Using object any type of object can be referenced while you can reference specific types of objects with they type of object, such as referencing a database as a database object or a task as a task object.
- Read more about Object
- Log in or register to post comments