From eee742da7f618d9b7df7d32c1103445cb3c040c7 Mon Sep 17 00:00:00 2001 From: Philippe Marschall Date: Fri, 14 Oct 2016 15:45:16 +0200 Subject: [PATCH] Remove OracleLobHandler from documentation Now that OracleLobHandler has finally been removed it should also be removed from the documentation. This commit includes the following changes: * remove OracleLobHandler references from Javadoc * remove OracleLobHandler references from Asciidoctor Issue: SPR-14809 Closes gh-1204 --- .../jdbc/support/nativejdbc/SimpleNativeJdbcExtractor.java | 4 ---- src/asciidoc/data-access.adoc | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/support/nativejdbc/SimpleNativeJdbcExtractor.java b/spring-jdbc/src/main/java/org/springframework/jdbc/support/nativejdbc/SimpleNativeJdbcExtractor.java index 2bc2781cfd0..7f536bbe794 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/support/nativejdbc/SimpleNativeJdbcExtractor.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/support/nativejdbc/SimpleNativeJdbcExtractor.java @@ -35,10 +35,6 @@ package org.springframework.jdbc.support.nativejdbc; * flags to "true". If none of the statement types is wrapped - or you solely need * Connection unwrapping in the first place -, the defaults are fine. * - *

SimpleNativeJdbcExtractor is a common choice for use with OracleLobHandler, which - * just needs Connection unwrapping via the {@link #getNativeConnectionFromStatement} - * method. This usage will work with almost any connection pool. - * *

For full usage with JdbcTemplate, i.e. to also provide Statement unwrapping: *