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

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