aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--loadtime/testsrc/testdata/MySqlStatement.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/loadtime/testsrc/testdata/MySqlStatement.java b/loadtime/testsrc/testdata/MySqlStatement.java
index ea1143ab3..3f7048610 100644
--- a/loadtime/testsrc/testdata/MySqlStatement.java
+++ b/loadtime/testsrc/testdata/MySqlStatement.java
@@ -155,4 +155,29 @@ public abstract class MySqlStatement implements Statement {
public void setQueryTimeout(int seconds) throws SQLException {
}
+ public boolean isClosed() throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isPoolable() throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public void setPoolable(boolean poolable) throws SQLException {
+ // TODO Auto-generated method stub
+
+ }
+
+ public boolean isWrapperFor(Class<?> iface) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public <T> T unwrap(Class<T> iface) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
}