From 2f18181032fdd337a7bdf969c4d0262500a2508b Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 26 Dec 2015 01:46:07 +0300 Subject: [PATCH] Fix etlengine build -- all build errors fixed now! --- .../etlengine/src/com/sun/etl/jdbc/JDBCProxyDriver.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ojc-core/etlse/etlengine/src/com/sun/etl/jdbc/JDBCProxyDriver.java b/ojc-core/etlse/etlengine/src/com/sun/etl/jdbc/JDBCProxyDriver.java index 66277d68c..6a31d6c5e 100755 --- a/ojc-core/etlse/etlengine/src/com/sun/etl/jdbc/JDBCProxyDriver.java +++ b/ojc-core/etlse/etlengine/src/com/sun/etl/jdbc/JDBCProxyDriver.java @@ -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(); + } }