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

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