All Known Implementing Classes:
DefaultLobHandler, AbstractLobHandler, OracleLobHandler
Provides accessor methods for BLOBs and CLOBs, and acts as factory for LobCreator instances, to be used as sessions for creating BLOBs or CLOBs. LobCreators are typically instantiated for each statement execution or for each transaction. They are not thread-safe because they might track allocated database resources to be able to free them after execution.
Most databases/drivers should be able to work with DefaultLobHandler ,
which by default delegates to JDBC's direct accessor methods, avoiding
java.sql.Blob and java.sql.Clob completely.
DefaultLobHandler can also be configured to populate LOBs using
PreparedStatement.setBlob/setClob (e.g. for PostgreSQL).
Unfortunately, Oracle 9i just accepts Blob/Clob instances created via its own proprietary BLOB/CLOB API, and additionally doesn't accept large streams for PreparedStatement's corresponding setter methods. Therefore, you need to use OracleLobHandler there, which uses Oracle's BLOB/CLOB API for both all access. The Oracle 10g JDBC driver should basically work with DefaultLobHandler as well, with some limitations in terms of LOB sizes.
Of course, you need to declare different field types for each database. In Oracle, any binary content needs to go into a BLOB, and all character content beyond 4000 bytes needs to go into a CLOB. In MySQL, there is no notion of a CLOB type but rather a LONGTEXT type that behaves like a VARCHAR. For complete portability, use a LobHandler for fields that might typically require LOBs on some database because of the field size (take Oracle's numbers as a guideline).
Summarizing the recommended options (for actual LOB fields):
streamAsLob=true.
wrapAsLob=true.
Juergen - Hoeller23.12.2003 - | Method from org.springframework.jdbc.support.lob.LobHandler Summary: |
|---|
| getBlobAsBinaryStream, getBlobAsBinaryStream, getBlobAsBytes, getBlobAsBytes, getClobAsAsciiStream, getClobAsAsciiStream, getClobAsCharacterStream, getClobAsCharacterStream, getClobAsString, getClobAsString, getLobCreator |
| Method from org.springframework.jdbc.support.lob.LobHandler Detail: |
|---|
ResultSet.getBinaryStream or work with
ResultSet.getBlob, depending on the database and driver. |
ResultSet.getBinaryStream or work with
ResultSet.getBlob, depending on the database and driver. |
ResultSet.getBytes or work with
ResultSet.getBlob, depending on the database and driver. |
ResultSet.getBytes or work with
ResultSet.getBlob, depending on the database and driver. |
ResultSet.getAsciiStream or work with
ResultSet.getClob, depending on the database and driver. |
ResultSet.getAsciiStream or work with
ResultSet.getClob, depending on the database and driver. |
ResultSet.getCharacterStream or work with
ResultSet.getClob, depending on the database and driver. |
ResultSet.getCharacterStream or work with
ResultSet.getClob, depending on the database and driver. |
ResultSet.getString or work with
ResultSet.getClob, depending on the database and driver. |
ResultSet.getString or work with
ResultSet.getClob, depending on the database and driver. |
|