Hello developers!
Is there a way to get the actual Connection object from TranQL connection
pooling?
I am trying to implement a NativeJdbcExtractorAdapter for Geronimo.
I tried using reflections to get at the getManagedConnection() method,
didn't work out to well.
this.wrappedConnectionClass =
getClass().getClassLoader().loadClass("org.tranql.connector.jdbc.ConnectionHandle");
this.getManagedConnection =
this.wrappedConnectionClass.getDeclaredMethod("getManagedConnection",
(Class[]) null);
this.getManagedConnection.setAccessible(true);
--
View this message in context:
http://apache-geronimo.328035.n3.nabble.com/TranQL-getPhysicalConnection-tp866242p866242.html
Sent from the Development mailing list archive at Nabble.com.