I'm developing what is turning out to be a huge system. My main tables are full of id's which refer to other tables. In my processing I have a constant need to convert these id's to full descriptions. Some of the less voluminous data I keep in global collections. But I have some bigger tables like my user table which converts userid's to full names. How can I do these conversions quickly? I'd rather not open an ADO connection each time.
Any bright ideas? I thought about caching data in a collection and scanning that first before I read the table.
Any bright ideas? I thought about caching data in a collection and scanning that first before I read the table.