PageSize - property of the AdoRecordset object
Description:
The property returns or sets the maximum number of records allowed on a single page of the
AdoRecordset object.
The property returns or sets the value of the
Long type that specifies the maximum number of records allowed on a single page of the
AdoRecordset object.
The default value is 10.
Values:
num - The number of records per page
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var nPageSize = oRs.PageSize;
// Reading from the property
Dim nPageSize
nPageSize = oRs.PageSize
' Reading from the property