类 OracleLobHandler

  • 所有已实现的接口:
    LobHandler

    @Deprecated
    public class OracleLobHandler
    extends AbstractLobHandler
    已过时。
    in favor of DefaultLobHandler for the Oracle 10g driver and higher. Consider using the 10g/11g driver even against an Oracle 9i database! DefaultLobHandler.setCreateTemporaryLob(boolean) is the direct equivalent of this OracleLobHandler's implementation strategy, just using standard JDBC 4.0 API. That said, in most cases, regular DefaultLobHandler setup will work fine as well.
    LobHandler implementation for Oracle databases. Uses proprietary API to create oracle.sql.BLOB and oracle.sql.CLOB instances, as necessary when working with Oracle's JDBC driver. Note that this LobHandler requires Oracle JDBC driver 9i or higher!

    While most databases are able to work with DefaultLobHandler, Oracle 9i (or more specifically, the Oracle 9i JDBC driver) 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 a strategy like this LobHandler implementation, or upgrade to the Oracle 10g/11g driver (which still supports access to Oracle 9i databases).

    NOTE: As of Oracle 10.2, DefaultLobHandler should work equally well out of the box. On Oracle 11g, JDBC 4.0 based options such as DefaultLobHandler.setStreamAsLob(boolean) and DefaultLobHandler.setCreateTemporaryLob(boolean) are available as well, rendering this proprietary OracleLobHandler obsolete. Also, consider upgrading to a new driver even when accessing an older database. See the LobHandler interface javadoc for a summary of recommendations.

    Needs to work on a native JDBC Connection, to be able to cast it to oracle.jdbc.OracleConnection. If you pass in Connections from a connection pool (the usual case in a Java EE environment), you need to set an appropriate NativeJdbcExtractor to allow for automatic retrieval of the underlying native JDBC Connection. LobHandler and NativeJdbcExtractor are separate concerns, therefore they are represented by separate strategy interfaces.

    Coded via reflection to avoid dependencies on Oracle classes. Even reads in Oracle constants via reflection because of different Oracle drivers (classes12, ojdbc14, ojdbc5, ojdbc6) having different constant values! As this LobHandler initializes Oracle classes on instantiation, do not define this as eager-initializing singleton if you do not want to depend on the Oracle JAR being in the class path: use "lazy-init=true" to avoid this issue.

    从以下版本开始:
    04.12.2003
    作者:
    Juergen Hoeller, Thomas Risberg
    另请参阅:
    DefaultLobHandler, setNativeJdbcExtractor(org.springframework.jdbc.support.nativejdbc.NativeJdbcExtractor)
    • 字段详细资料

      • logger

        protected final Log logger
        已过时。
    • 方法详细资料

      • setNativeJdbcExtractor

        public void setNativeJdbcExtractor​(NativeJdbcExtractor nativeJdbcExtractor)
        已过时。
        Set an appropriate NativeJdbcExtractor to be able to retrieve the underlying native oracle.jdbc.OracleConnection. This is necessary for DataSource-based connection pools, as those need to return wrapped JDBC Connection handles that cannot be cast to a native Connection implementation.

        Effectively, this LobHandler just invokes a single NativeJdbcExtractor method, namely getNativeConnectionFromStatement with a PreparedStatement argument (falling back to a PreparedStatement.getConnection() call if no extractor is set).

        A common choice is SimpleNativeJdbcExtractor, whose Connection unwrapping (which is what OracleLobHandler needs) will work with many connection pools. See SimpleNativeJdbcExtractor and oracle.jdbc.OracleConnection javadoc for details.

        另请参阅:
        NativeJdbcExtractor.getNativeConnectionFromStatement(java.sql.Statement), SimpleNativeJdbcExtractor, OracleJdbc4NativeJdbcExtractor
      • getBlobAsBytes

        public byte[] getBlobAsBytes​(ResultSet rs,
                                     int columnIndex)
                              throws SQLException
        已过时。
        从接口复制的说明: LobHandler
        Retrieve the given column as bytes from the given ResultSet. Might simply invoke ResultSet.getBytes or work with ResultSet.getBlob, depending on the database and driver.
        参数:
        rs - the ResultSet to retrieve the content from
        columnIndex - the column index to use
        返回:
        the content as byte array, or null in case of SQL NULL
        抛出:
        SQLException - if thrown by JDBC methods
        另请参阅:
        ResultSet.getBytes(int)
      • getBlobAsBinaryStream

        public InputStream getBlobAsBinaryStream​(ResultSet rs,
                                                 int columnIndex)
                                          throws SQLException
        已过时。
        从接口复制的说明: LobHandler
        Retrieve the given column as binary stream from the given ResultSet. Might simply invoke ResultSet.getBinaryStream or work with ResultSet.getBlob, depending on the database and driver.
        参数:
        rs - the ResultSet to retrieve the content from
        columnIndex - the column index to use
        返回:
        the content as binary stream, or null in case of SQL NULL
        抛出:
        SQLException - if thrown by JDBC methods
        另请参阅:
        ResultSet.getBinaryStream(int)
      • getClobAsString

        public String getClobAsString​(ResultSet rs,
                                      int columnIndex)
                               throws SQLException
        已过时。
        从接口复制的说明: LobHandler
        Retrieve the given column as String from the given ResultSet. Might simply invoke ResultSet.getString or work with ResultSet.getClob, depending on the database and driver.
        参数:
        rs - the ResultSet to retrieve the content from
        columnIndex - the column index to use
        返回:
        the content as String, or null in case of SQL NULL
        抛出:
        SQLException - if thrown by JDBC methods
        另请参阅:
        ResultSet.getString(int)
      • getClobAsAsciiStream

        public InputStream getClobAsAsciiStream​(ResultSet rs,
                                                int columnIndex)
                                         throws SQLException
        已过时。
        从接口复制的说明: LobHandler
        Retrieve the given column as ASCII stream from the given ResultSet. Might simply invoke ResultSet.getAsciiStream or work with ResultSet.getClob, depending on the database and driver.
        参数:
        rs - the ResultSet to retrieve the content from
        columnIndex - the column index to use
        返回:
        the content as ASCII stream, or null in case of SQL NULL
        抛出:
        SQLException - if thrown by JDBC methods
        另请参阅:
        ResultSet.getAsciiStream(int)
      • getClobAsCharacterStream

        public Reader getClobAsCharacterStream​(ResultSet rs,
                                               int columnIndex)
                                        throws SQLException
        已过时。
        从接口复制的说明: LobHandler
        Retrieve the given column as character stream from the given ResultSet. Might simply invoke ResultSet.getCharacterStream or work with ResultSet.getClob, depending on the database and driver.
        参数:
        rs - the ResultSet to retrieve the content from
        columnIndex - the column index to use
        返回:
        the content as character stream
        抛出:
        SQLException - if thrown by JDBC methods
        另请参阅:
        ResultSet.getCharacterStream(int)
      • getLobCreator

        public LobCreator getLobCreator()
        已过时。
        从接口复制的说明: LobHandler
        Create a new LobCreator instance, i.e. a session for creating BLOBs and CLOBs. Needs to be closed after the created LOBs are not needed anymore - typically after statement execution or transaction completion.
        返回:
        the new LobCreator instance
        另请参阅:
        LobCreator.close()
      • initializeResourcesBeforeRead

        protected void initializeResourcesBeforeRead​(Connection con,
                                                     Object lob)
        已过时。
        Initialize any LOB resources before a read is done.

        This implementation calls BLOB.open(BLOB.MODE_READONLY) or CLOB.open(CLOB.MODE_READONLY) on any non-temporary LOBs if releaseResourcesAfterRead property is set to true.

        This method can be overridden by sublcasses if different behavior is desired.

        参数:
        con - the connection to be usde for initilization
        lob - the LOB to initialize
      • releaseResourcesAfterRead

        protected void releaseResourcesAfterRead​(Connection con,
                                                 Object lob)
        已过时。
        Release any LOB resources after read is complete.

        If releaseResourcesAfterRead property is set to true then this implementation calls BLOB.close() or CLOB.close() on any non-temporary LOBs that are open or BLOB.freeTemporary() or CLOB.freeTemporary() on any temporary LOBs.

        This method can be overridden by sublcasses if different behavior is desired.

        参数:
        con - the connection to be usde for initilization
        lob - the LOB to initialize