37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
diff -up ./src/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.java.sav ./src/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.java
|
|
--- ./src/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.java.sav 2012-01-25 14:43:27.000000000 -0500
|
|
+++ ./src/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.java 2012-01-25 14:48:52.000000000 -0500
|
|
@@ -40,6 +40,8 @@ import com.mysql.jdbc.ConnectionImpl;
|
|
import com.mysql.jdbc.Messages;
|
|
import com.mysql.jdbc.SQLError;
|
|
|
|
+import java.util.concurrent.Executor;
|
|
+import java.sql.SQLFeatureNotSupportedException;
|
|
|
|
public class JDBC4LoadBalancedMySQLConnection extends
|
|
LoadBalancedMySQLConnection implements JDBC4MySQLConnection {
|
|
@@ -129,4 +131,24 @@ public class JDBC4LoadBalancedMySQLConne
|
|
return this.getJDBC4Connection().getClientInfoProviderImpl();
|
|
|
|
}
|
|
+
|
|
+ public int getNetworkTimeout() throws SQLException {
|
|
+ throw new SQLFeatureNotSupportedException("Not supported");
|
|
+ }
|
|
+
|
|
+ public void setNetworkTimeout(Executor executor, int millis) throws SQLException {
|
|
+ throw new SQLFeatureNotSupportedException("Not supported");
|
|
+ }
|
|
+
|
|
+ public void abort(Executor executor) throws SQLException {
|
|
+ throw new SQLFeatureNotSupportedException("Not supported");
|
|
+ }
|
|
+
|
|
+ public String getSchema() throws SQLException {
|
|
+ throw new SQLFeatureNotSupportedException("Not supported");
|
|
+ }
|
|
+
|
|
+ public void setSchema(String schema) throws SQLException {
|
|
+ throw new SQLFeatureNotSupportedException("Not supported");
|
|
+ }
|
|
}
|