ADODB.RecordSet
object represents a set of records from a table/view or an SQL select statement. recordSet
is for example returned by moveNext()
advances to the next record in a record set. The property EOF
(end of file?) indicates if the end is reached. set rs = new adodb.recordset rs.open "select …", conn do while not rs.eof … rs.moveNext loop
absolutePage | |
absolutePosition | |
activeCommand | |
activeConnection | |
addNew() | |
BOF , EOF , EOS | |
bookmark | |
cacheSize | |
cancel() | |
cancelBatch() | |
cancelUpdate() | |
clone() | |
close() | Frees system resources associated with the recordset object. |
compareBookmarks() | |
cursorLocation | |
cursorType | |
dataMember | |
dataSource | |
delete() | |
editMode | |
endOfRecordset() | Event |
fetchComplete() | Event |
fetchProgress() | Event |
fields | A collection of field objects. |
filter | |
find() | |
getRows() | |
getString() | |
index | |
lockType | |
marshalOptions | |
maxRecords | |
move() | |
moveFirst() | |
moveLast() | |
moveNext() | |
movePrevious() | |
nextRecordset() | |
open() | |
pageCount | |
pageSize | |
properties Collection | |
recordCount | |
requery() | |
resync() | |
save() | |
seek() | |
sort | |
source | |
state | |
status | |
stayInSync | |
supports() | |
update() | |
updateBatch() | |
willChangeField() , fieldChangeComplete() | Events |
willChangeRecord() , recordChangeComplete() | Events |
willChangeRecordset() , recordsetChangeComplete() | Events |
willMove() , moveComplete() | Events |
range.copyFromRecordset
copies the data of a recordset to an Excel worksheet. Recordset
object in the Access object model