CacheSize Property

  • Thread starter Thread starter Amin Sobati
  • Start date Start date
A

Amin Sobati

Hi,
I used to set the value of CacheSize property for Recordset in my VB
apps(ADO 2.7). What property now I can use instead of CacheSize in ADO.NET?
Any help would be greatly appreciated.
Amin
 
The CacheSize referred to the number of rows managed in a server-side
cursor. Those are a thing of the past with ADO.NET. What are you trying to
do? There are ways to build server-side cursors via SQL, but you have to
implement the caching yourself.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Back
Top