sql >> Database teknologi >  >> RDS >> Oracle

Er der en måde at overvinde DSRA9010E 'setReadOnly' er ikke understøttet på WebSphere undtagelsen?

Prøv at pakke connection ud objekt som dette:

Context ic = new InitialContext();
DataSource ds = (DataSource)ic.lookup("jdbc/OracleDS");
Connection conn = ds.getConnection();

if (conn.isWrapperFor(oracle.jdbc.OracleConnection.class)) {
     // Returns an object that implements the given interface to
     // allow access to non-standard methods, or standard methods
     // not exposed by the proxy.
     oracle.jdbc.OracleConnection oraCon = conn.unwrap(oracle.jdbc.OracleConnection.class);
     // Do some Oracle-specific work here.
     oraCon.setReadOnly(readOnly);
     ....

}
conn.close(); 

Se WebSphere Application Server og JDBC 4.0 Wrapper-mønsteret



  1. LISTAGG i ORACLE

  2. SQL:Hvordan gemmer man ordre i sql-forespørgsel?

  3. Valg af største N poster i X grupper

  4. MySQL versionskontrol - Subversion