SQL-J Language Reference
Page 101 of 121

LONG VARBINARY, LONG BIT VARYING, LONG BINARY

The LONG VARBINARY type allows storage of bit strings of unlimited length. It is identical to BIT, except that you do not have to specify a maximum length when creating columns of this type.

Syntax for Column Definition

{
    LONG VARBINARY |
    LONG BIT VARYING |
    LONG BINARY
}

Corresponding Compile-Time Java Type

byte[]

JDBC Metadata Type (java.sql.Types)

LONGVARBINARY

When you are converting from Java values to SQL values, no Java type corresponds to LONG VARBINARY.