Hmm, well MoveLast is still moving in the forward right? Would that
not be supported?
I think this is a sensible suggestion, and would be very helpful to
baseline my code. Would you happen to know what database providers
offer only a MoveForwardOnly client cursor?
Thanks
Eric
>Forward only means exactly that, MoveNext is the only valid move. Calling an
>invalid method throws an error.
[quoted text clipped - 4 lines]
>
>> Thank You
Mark J. McGinty - 28 Jan 2007 10:26 GMT
> Hmm, well MoveLast is still moving in the forward right? Would that
> not be supported?
>
> I think this is a sensible suggestion, and would be very helpful to
> baseline my code. Would you happen to know what database providers
> offer only a MoveForwardOnly client cursor?
Not certain about MoveLast. As for forward-only cursor support, SQL Server
does for sure, I assume Jet does as well. With SQL, just open a connection
and call the Execute method to create a forward-only, read-only recordset,
e.g.,
Set rs = cn.Execute("SELECT * FROM ...")
-Mark
> Thanks
> Eric
[quoted text clipped - 8 lines]
>>
>>> Thank You