ResultSet. next () 방법

2131 단어 JAVAOracledatabase
다음은 javadoc 의 주석 입 니 다.

boolean java.sql.ResultSet.next() throws SQLException
Moves the cursor forward one row from its current position. A  ResultSet  cursor is initially positioned before the first row; the first call to the method  next  makes the first row the current row; the second call makes the second row the current row, and so on.
When a call to the  next  method returns  false , the cursor is positioned after the last row. Any invocation of a  ResultSet  method which requires a current row will result in a  SQLException  being thrown. If the result set type is  TYPE_FORWARD_ONLY , it is vendor specified whether their JDBC driver implementation will return  false  or throw an SQLException  on a subsequent call to  next .
If an input stream is open for the current row, a call to the method  next  will implicitly close it. A  ResultSet  object's warning chain is cleared when a new row is read.”

포인 터 를 현재 위치 다음 줄 로 이동 합 니 다. ResultSet 포인 터 는 첫 번 째 줄 앞 에 있 습 니 다. 첫 번 째 next () 방법 은 첫 번 째 줄 을 현재 줄 로 설정 합 니 다. 두 번 째 next () 방법 포인 터 는 두 번 째 줄 로 이동 합 니 다.
next () 방법 을 false 로 호출 하면 포인터 가 마지막 줄 에 있 음 을 설명 합 니 다. ResultSet 에 대해 서 는 현재 줄 의 방법 을 사용 해 야 합 니 다. [주: getString (), getInt () 등] 호출 은 next () 방법 으로 SQLException 이상 을 던 집 니 다. 되 돌아 오 는 ResultSet 집합 형식 이 TYPE FORWARD ONLY 로 설정 되면 다음 next () 로 설 정 됩 니 다.방법의 호출 에서 false 를 되 돌려 주거 나 SQLException 이상 을 던 집 니 다. 데이터베이스 공급 자의 JDBC 구동 에 따라 다 릅 니 다.
현재 줄 에 입력 흐름 을 열 면 next () 방법 에 대한 호출 은 암시 적 으로 닫 힙 니 다.
새 줄 을 읽 을 때 ResultSet 대상 의 경고 체인 이 비 워 집 니 다.

여기 서 주의해 야 할 것 은:
1. 포인터 위 치 는 첫 줄 앞 에 있 습 니 다. 즉, next () 방법 을 처음 호출 한 후에 야 데 이 터 를 얻 을 수 있 습 니 다.첫 줄 을 얻 지 못 할 까 봐 걱정 하지 않 고 while 에 편리 하 게 협조 할 수 있다 는 것 이 장점 이다.
2. 포인터 가 마지막 줄 로 이동 한 후 false 로 돌아 가 순환 이 끝 나 는 조건 으로 사용 할 수 있 습 니 다.두 가지 경우: 마지막 줄 까지 옮 겨 다 니 거나 ResultSet 에 요소 줄 이 0 이 없 을 때 false 로 돌아 가 순환 을 종료 합 니 다.
while(re.next()){
    //re.getXXX()
}

좋은 웹페이지 즐겨찾기