コード例 #1
0
  public int getMaxRows() throws SQLException {
    Profiler profiler = _profilerPoint.start();

    try {
      return _preparedStatement.getMaxRows();
    } finally {
      profiler.finish();
    }
  }
コード例 #2
0
 public int getMaxRows() throws SQLException {
   return delegate.getMaxRows();
 }
コード例 #3
0
 public int getMaxRows() throws SQLException {
   return statement.getMaxRows();
 }
コード例 #4
0
 @Override
 public int getMaxRows() throws SQLException {
   return stmt.getMaxRows();
 }