R
Robert Morley
That is not really true. Movelast fully populates the recordset, and
Even in a snapshot situation, most of the data is stored internally to the
provider, and does not need to be set up in the client (ADO/DAO), so the
results are unlikely to be significantly different. When you access each
record, it marshals it from the provider to the client (unless it's a
client-side cursor, of course). THAT's where you'll begin to see
significant differences. As I remember it, there's a significant difference
in other operations such as client-side filtering and sorting, etc., as
well.
No doubt, ADO is more powerful though, and is therefore probably preferable
in most situations unless speed is absolutely essential.
Rob
he has a snapshot, so each record in the recordset is fully populated.
There is no 'jumping' involved
Even in a snapshot situation, most of the data is stored internally to the
provider, and does not need to be set up in the client (ADO/DAO), so the
results are unlikely to be significantly different. When you access each
record, it marshals it from the provider to the client (unless it's a
client-side cursor, of course). THAT's where you'll begin to see
significant differences. As I remember it, there's a significant difference
in other operations such as client-side filtering and sorting, etc., as
well.
No doubt, ADO is more powerful though, and is therefore probably preferable
in most situations unless speed is absolutely essential.
Rob