Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Ustawianie strefy czasowej sesji za pomocą wiosennej wyroczni jdbc

Prawidłowym sposobem jest użycie DelegatingDataSource , pobierz OracleConnection obiektu z oryginalnego źródła danych i wywołaj OracleConnection.setSessionTimeZone() z odpowiednim parametrem.

Kod C3P0 wygląda tak:

private Object[] timeZoneArgs = new Object[] { "Europe/Berlin" };

@Override
public Connection getConnection() throws SQLException {
    Connection conn = super.getConnection();
    try {
        final Method setSessionTimeZoneMethod = OracleConnection.class.getMethod("setSessionTimeZone", String.class);
        final C3P0ProxyConnection castCon = (C3P0ProxyConnection) conn;
        castCon.rawConnectionOperation(setSessionTimeZoneMethod, C3P0ProxyConnection.RAW_CONNECTION, timeZoneArgs);
        return conn;
    } catch (Exception e) {
        log.error("setSessionTimeZone failed " + e.getMessage());
        return conn;
    }
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ORA-6502 z wyzwalaczem Grant Logging

  2. Awarie z EMCLI

  3. Jak dodać „ON DELETE CASCADE” w instrukcji ALTER TABLE?

  4. Eksportowanie tabeli Oracle do arkusza programu Excel

  5. lista oddzielona przecinkami w wyniku instrukcji select w Oracle