Ejemplo n.º 1
0
 public void close() throws SQLException {
   wsh.doClose();
 }
Ejemplo n.º 2
0
 public Object rawStatementOperation(Method m, Object target, Object[] args)
     throws IllegalAccessException, InvocationTargetException, SQLException {
   return wsh.doRawStatementOperation(m, target, args);
 }
Ejemplo n.º 3
0
 public ResultSet getGeneratedKeys() throws SQLException {
   return wsh.wrap(super.getGeneratedKeys());
 }
Ejemplo n.º 4
0
 public ResultSet executeQuery(String sql) throws SQLException {
   return wsh.wrap(super.executeQuery(sql));
 }
Ejemplo n.º 5
0
 public ResultSet getResultSet() throws SQLException {
   return wsh.wrap(super.getResultSet());
 }