ADO 이동 방법


❮ 완전한 레코드세트 개체 참조

Move 메서드는 Recordset 개체에서 레코드 포인터를 이동합니다.

참고: 이 방법은 모든 Recordset 개체에 사용할 수 있습니다.

통사론

objRecordset.Move numrec,start

Parameter Description
numrec Required. Specifies how many records the record pointer will move.

Example: If this parameter is set to 3, the record pointer moves 3 records forward.

Example: If this parameter is set to -3, the record pointer moves 3 records backward

start Optional. Where to start. Can be a bookmark or a BookmarkEnum value

책갈피열기

Constant Value Description
adBookmarkCurrent 0 Starts at the current record
adBookmarkFirst 1 Starts at the first record
adBookmarkLast 2 Starts at the last record

❮ 완전한 레코드세트 개체 참조