Example usage for org.springframework.jdbc.support.lob AbstractLobHandler subclass-usage

List of usage examples for org.springframework.jdbc.support.lob AbstractLobHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.support.lob AbstractLobHandler subclass-usage.

Usage

From source file org.springframework.jdbc.support.lob.DefaultLobHandler.java

/**
 * Default implementation of the {@link LobHandler} interface.
 * Invokes the direct accessor methods that {@code java.sql.ResultSet}
 * and {@code java.sql.PreparedStatement} offer.
 *
 * <p>By default, incoming streams are going to be passed to the appropriate

From source file org.springframework.jdbc.support.lob.OracleLobHandler.java

/**
 * {@link LobHandler} implementation for Oracle databases. Uses proprietary API
 * to create {@code oracle.sql.BLOB} and {@code oracle.sql.CLOB}
 * instances, as necessary when working with Oracle's JDBC driver.
 * Note that this LobHandler requires Oracle JDBC driver 9i or higher!
 *