このコンテンツは選択した言語では利用できません。
A.3.3. Retrieving the Underlying Oracle Connection Object
Example A.9. Oracle Connection Object
Connection conn = myJBossDatasource.getConnection();
WrappedConnection wrappedConn = (WrappedConnection)conn;
Connection underlyingConn = wrappedConn.getUnderlyingConnection();
OracleConnection oracleConn = (OracleConnection)underlyingConn;