Fix etlengine build -- all build errors fixed now!

master
Vitaliy Filippov 2015-12-26 01:46:07 +03:00
parent aa5449427d
commit 2f18181032
1 changed files with 6 additions and 0 deletions

View File

@ -36,6 +36,9 @@ import java.sql.DriverPropertyInfo;
import java.sql.SQLException;
import java.util.Properties;
import java.util.logging.Logger;
import java.sql.SQLFeatureNotSupportedException;
/**
* Traditionally, the mechanism is that you put the JDBC driver somewhere in the classpath
* and then use class.forName() to find and load the driver. One problem with this is that
@ -86,4 +89,7 @@ public class JDBCProxyDriver implements Driver {
return this.driver.jdbcCompliant();
}
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
return this.driver.getParentLogger();
}
}