|
@@ -60,49 +60,4 @@ public class DynamicDataSourceProxy implements DynamicDataSource {
|
|
|
|
|
|
return databaseType;
|
|
return databaseType;
|
|
}
|
|
}
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public Connection getConnection() throws SQLException {
|
|
|
|
- return proxy.getConnection();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public Connection getConnection(String username, String password) throws SQLException {
|
|
|
|
- return proxy.getConnection(username, password);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public <T> T unwrap(Class<T> iface) throws SQLException {
|
|
|
|
- return proxy.unwrap(iface);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public boolean isWrapperFor(Class<?> iface) throws SQLException {
|
|
|
|
- return proxy.isWrapperFor(iface);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public PrintWriter getLogWriter() throws SQLException {
|
|
|
|
- return proxy.getLogWriter();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public void setLogWriter(PrintWriter out) throws SQLException {
|
|
|
|
- proxy.setLogWriter(out);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public void setLoginTimeout(int seconds) throws SQLException {
|
|
|
|
- proxy.setLoginTimeout(seconds);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public int getLoginTimeout() throws SQLException {
|
|
|
|
- return proxy.getLoginTimeout();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public Logger getParentLogger() throws SQLFeatureNotSupportedException {
|
|
|
|
- return proxy.getParentLogger();
|
|
|
|
- }
|
|
|
|
}
|
|
}
|