Link to home
Start Free TrialLog in
Avatar of Dennis Green
Dennis Green

asked on

Do you Use PageSize on ADO Object Command or Recordset

objCommand.ActiveConnection = objConnection                              'assignment to an existing ADO connection
        objCommand.Properties("Page Size").Value = 1000                          'set the Paged Results value to 1000 (AD standard)
        objCommand.Properties("Cache Results").Value = False

Or

        objRecordSet.CacheSize = 500
        objRecordSet.PageSize = 1000

Or Both
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
do you need further guidance here?
No comment has been added to this question in more than 21 days, so it is now classified as abandoned.

I have recommended this question be closed as follows:

Accept: Ryan Chong (https:#a42421025)

If you feel this question should be closed differently, post an objection and the moderators will review all objections and close it as they feel fit. If no one objects, this question will be closed automatically the way described above.

Pber
Experts-Exchange Cleanup Volunteer