Table of Contents
Short Field
Range of Type
This type of field can keep values in the range -32768..32767.
Storage
This field always uses 2 bytes on disk per value.
Flags
- fNullable
This field can be declared as Nullable. In this case a special bitmap is associated with this field.
- fIndexed
This field can have flag fIndexed.
- fUnique
This field can have flag fUnique.
API
This field type is represented at the API level by VShort Class.
SQL
At SQL Level you can create such field using
CREATE TABLE T1( fldShort SHORT );
You can use this field in any predicate expression, e.g.
SELECT * FROM T1 WHERE fldShort = 54;