ASA SQL Reference
SQL Data Types
Binary data types
Binary data of a specified maximum length (in bytes).
BINARY [ ( max-length ) ]
The default max-length is 1.
The maximum size allowed is 32767. The BINARY data type is identical to the CHAR data type except when used in comparisons. BINARY values are compared exactly while CHAR values are compared using the collation sequence of the database.
max-length An integer expression that specifies the maximum length of the expression.
SQL/92 Vendor extension.
Sybase Adaptive Server Enterprise supports max-length up to 255.
LONG BINARY data type [BINARY]