![]() ![]() ![]() |
Ispirer SQLWays Database Migration Software
binary, long binary, varbinary and image
Binary data types, which are used to store images and other information that is not interpreted by the database.
binary[(n)]
Fixed-length binary data of n bytes. n must be a value from 1 through 32767. When n is not specified, the default length is 1.
long binary
Variable-length binary data. The maximum size is equal to the maximum size of the database file (currently 2Gb).
varbinary[(n)]
Variable-length binary data of n bytes. n must be a value from 1 through 32767. When n is not specified, the default length is 1.
image
Variable-length binary data. It is implemented in Adaptive Server Anywhere as long binary allowing NULL.
This data type is provided primarily for compatibility with Adaptive Server Enterprise.
![]() ![]() ![]() |