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

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