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

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