Guest_imported
New member
- Jan 1, 1970
- 0
I have about 200 user records that I need to access by user. Each user will have about 10 records each, so that means I'll have about 20 users. I see three different options.
1. Do I open a record set with all 200 records and leave it open, using rs.movefirst to cycle through the data 20 times.
2. Do i filter the request per user, making 20 calls to the DB each bringing in 10 records.
3. Do i hit the database just once, and bring in all 200 records into an array. close my connection and then just work with the array.
Any help would be apreciatied.
Thanks
1. Do I open a record set with all 200 records and leave it open, using rs.movefirst to cycle through the data 20 times.
2. Do i filter the request per user, making 20 calls to the DB each bringing in 10 records.
3. Do i hit the database just once, and bring in all 200 records into an array. close my connection and then just work with the array.
Any help would be apreciatied.
Thanks