CacheSize - property of the AdoRecordset object
Description:
The property returns or sets the number of records that can be cached.
The property returns or sets a value of the
Long type that specifies the number of records that can be cached locally in the memory. The value must be greater than 0. The default value is 1.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var nRec = oRs.CacheSize;
// Reading from the property
Dim nRec
nRec = oRs.CacheSize
' Reading from the property