When using the binary storage technique, the table used by the JdbcStorage and JdbcStorageRegNew components has this schema:
Column |
Data format |
---|---|
ps_key (primary key) |
The table’s primary key. The column datatype is different for different component primary key types (that is, the IDL or Java type specified in the Primary Key field on the Persistence tab):
This column cannot be null. |
ps_size |
Integer, cannot be null. |
ps_bin1 |
Variable length binary, 255 bytes maximum length, can be null. |
ps_bin2 |
Variable length binary, 255 bytes maximum length, can be null. |
ps_bin3 |
Variable length binary, 255 bytes maximum length, can be null. |
ps_bin4 |
Variable length binary, 255 bytes maximum length, can be null. |
ps_data |
Binary large object. This type must be functionally equivalent to a Sybase image type. The JDBC driver used by the specified connection cache must allow access to the ps_data column using the JDBC setBytes and getBytes methods. |