From f55ef741d7246cfac8f5c02754c0e4c9698fd310 Mon Sep 17 00:00:00 2001 From: aclement Date: Sat, 27 Nov 2010 01:59:52 +0000 Subject: [PATCH] extra impl --- loadtime/testsrc/testdata/MySqlStatement.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) 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 unwrap(Class iface) throws SQLException { + // TODO Auto-generated method stub + return null; + } + } -- 2.39.5