Does the JDBC-ODBC Bridge support binary objects and the blob data type?

The JDBC-ODBC Bridge supports the getBinaryStream and updateBinaryStream methods for handling binary objects.

The Java blob data type allows you to navigate within the binary object. As there is no direct equivalent for this in ODBC, the JDBC-ODBC Bridge does not support this feature. If you need to navigate within a binary object, create a blob object in your Java application, which you then populate using the getBinaryStream method.