*Integer4 Data Type
The * Integer4 data type is similar to * Binary , with these exceptions:
- The integer format allows the full range of binary values.
- The number of decimal positions for an integer field is always zero.
-
Its length is defined in bytes, rather than digits.
- Integer4 automatically specifies the length as a 4-byte integer with the following field length range
-2147483648 to 2147483647
The equivalent .NET data type is System.Int32 .
You can also use the other data types to automatically set the length to a 2 or 8-byte integer.
-
Integer2 - sets the length to a 2-byte integer.
-
Integer8 - sets the length to an 8-byte integer.