If you ever want to access underlying Oracle Connection in an application deployed in Tomcat server, you can use the following simple code.
try{
java.sql.Connection connection = ConnectionManager.getConnection();
OracleConnection ocn = connection.unwrap( OracleConnection.class );
XMLType xmlReq = new XMLType(ocn, rxml);
...
...
...
}catch(Exception e){
e.printStackTrace();
}
For more documentation, please read http://docs.oracle.com/javase/6/docs/api/java/sql/Wrapper.html#unwrap(java.lang.Class)
Hope this tip is useful to you.
try{
java.sql.Connection connection = ConnectionManager.getConnection();
OracleConnection ocn = connection.unwrap( OracleConnection.class );
XMLType xmlReq = new XMLType(ocn, rxml);
...
...
...
}catch(Exception e){
e.printStackTrace();
}
For more documentation, please read http://docs.oracle.com/javase/6/docs/api/java/sql/Wrapper.html#unwrap(java.lang.Class)
Hope this tip is useful to you.
No comments:
Post a Comment