Uses of Interface
org.springframework.jdbc.support.nativejdbc.NativeJdbcExtractor

Packages that use NativeJdbcExtractor
org.springframework.jdbc.core Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. 
org.springframework.jdbc.support.lob Provides a stategy interface for Large OBject handling, with implementations for various databases. 
org.springframework.jdbc.support.nativejdbc Provides a mechanism for extracting native implementations of JDBC interfaces from wrapper objects that got returned from connection pools. 
 

Uses of NativeJdbcExtractor in org.springframework.jdbc.core
 

Methods in org.springframework.jdbc.core that return NativeJdbcExtractor
 NativeJdbcExtractor JdbcTemplate.getNativeJdbcExtractor()
          Return the current NativeJdbcExtractor implementation.
 

Methods in org.springframework.jdbc.core with parameters of type NativeJdbcExtractor
 void JdbcTemplate.setNativeJdbcExtractor(NativeJdbcExtractor extractor)
          Set a NativeJdbcExtractor to extract native JDBC objects from wrapped handles.
 

Uses of NativeJdbcExtractor in org.springframework.jdbc.support.lob
 

Methods in org.springframework.jdbc.support.lob with parameters of type NativeJdbcExtractor
 void OracleLobHandler.setNativeJdbcExtractor(NativeJdbcExtractor nativeJdbcExtractor)
          Set an appropriate NativeJdbcExtractor to be able to retrieve the underlying native oracle.jdbc.OracleConnection.
 

Uses of NativeJdbcExtractor in org.springframework.jdbc.support.nativejdbc
 

Classes in org.springframework.jdbc.support.nativejdbc that implement NativeJdbcExtractor
 class CommonsDbcpNativeJdbcExtractor
          Implementation of the NativeJdbcExtractor interface for the Jakarta Commons DBCP connection pool.
 class JBossNativeJdbcExtractor
          Implementation of the NativeJdbcExtractor interface for the JBoss 3.2 connection pool.
 class SimpleNativeJdbcExtractor
          Simple implementation of the NativeJdbcExtractor interface.
 class XAPoolNativeJdbcExtractor
          Implementation of the NativeJdbcExtractor interface for ObjectWeb's XAPool connection pool.
 



Copyright (C) 2003-2004 The Spring Framework Project.