The following code snippet I am using
import
org.springframework.jdbc.support.nativejdbc.SimpleNativeJdbcExtractor;
public LobHandler getLobHandler() {
OracleLobHandler lh = new OracleLobHandler();
lh.setNativeJdbcExtractor(new SimpleNativeJdbcExtractor());
return lh;
}
I am using the Spring-Version: 2.0.2
As per the documentation,
<p>SimpleNativeJdbcExtractor is a common choice for use with
OracleLobHandler,
* which just needs Connection unwrapping via the
* <code>getNativeConnectionFromStatement</code> method. This usage will
work
* with almost any connection pool. Known to work are, for example:
* <ul>
* <li>Caucho Resin 2.1.x, 3.0.x
* <li>Sun Java System Application Server 8
* <li>Oracle OC4J 9.0.3, 9.0.4
* <li>C3P0 0.8.x
* <li>Jakarta Commons DBCP 1.0, 1.1, 1.2 (used in Tomcat 4.1.x, 5.0.x)
* <li>JBoss 3.2.x
* </ul>
Will this SimpleNativeJdbcExtractor supports oracle 10g tranql connectors?
If it is not will any one suggest me which is the right NativeJdbcExtractor
I need to use.
Thanks in advance.
--
View this message in context:
http://www.nabble.com/Will-the-generic-Tranql-connector-for-Oracle-10g-supports-SimpleNativeJdbcExtractor--tp22539050s134p22539050.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.