public int getFetchDirection() throws SQLException {
    Profiler profiler = _profilerPoint.start();

    try {
      return _preparedStatement.getFetchDirection();
    } finally {
      profiler.finish();
    }
  }
 public int getFetchDirection() throws SQLException {
   return delegate.getFetchDirection();
 }
 public int getFetchDirection() throws SQLException {
   return statement.getFetchDirection();
 }
 @Override
 public int getFetchSize() throws SQLException {
   return stmt.getFetchDirection();
 }