Table 33.6 The Recordset Object Properties
|
|
Property
| Description
|
|
AbsolutePage
| indicates the current records page
|
AbsolutePosition
| indicates the current records position within the recordset
|
ActiveConnection
| indicates the active connection the recordset is using
|
BOF
| indicates the beginning of file within the recordset
|
Bookmark
| indicates a bookmark reference for the recordset
|
CacheSize
| indicates the cache size for the recordset
|
CursorType
| indicates the cursor type for the recordset
|
EditMode
| indicates whether the current record is being edited or added
|
EOF
| indicates the end of file within the recordset
|
Filter
| indicates the filter applied to the recordset
|
LockType
| indicates the type of lock applied to the recordset
|
MaxRecords
| indicates the maximum number of records the recordset will return
|
PageCount
| indicates the number of pages within the recordset
|
PageSize
| indicates the number of records within a page
|
RecordCount
| indicates the recordsets total number of records
|
Source
| indicates the recordsets source (table or query)
|
Status
| indicates the given records status
|
|
Table 33.7 The Recordset Object Methods
|
|
Method
| Description
|
|
AddNew
| creates a new record
|
CancelBatch
| cancels the pending batch update
|
CancelUpdate
| cancels changes made to the current recordset
|
Clone
| creates a new recordset by copying the records from the current recordset
|
Close
| closes the current recordset
|
Delete
| deletes the current record
|
GetRows
| copies the given records into an array
|
Move
| moves to the given record within the recordset
|
MoveFirst
| moves to the recordsets first record
|
MoveLast
| moves to the recordsets last record
|
MoveNext
| moves to the next record within the recordset
|
MovePrevious
| moves to the previous record within the recordset
|
NextRecordset
| closes the current recordset and then opens the next recordset
|
Open
| opens a recordset
|
Requery
| refreshes the recordset by re-executing the query
|
Resync
| syncs the current recordset with the database
|
Supports
| verifies whether the database supports the given function
|
Update
| saves the current record to the database
|
UpdateBatch
| saves changes from the batch update to the database
|
|