Array versus temporary recordset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am working on a project where I have the choice of
creating arrays of data or loading the data into temporary
recordsets. Does anybody have any stats on the relative
performance of each method of data storage and
manipulation? Using recordsets would probably make the
code a bit simpler, but if recordsets are going to take up
dramatically more resources, I'll crunch through the array
routines. Thanks for any thoughts!

Victor
 
I don't have any stats, but for searching the recordset is
going to be faster, especially if using an index.


Chris Nebinger
 
Back
Top