I am working with a VB 6.0 application that sits on top of an Oracle database.
In a table called products I have several columns. One column is called titles. I want to grab all distinct titles and insert them into an array.
I then use the array in a for loop to evaluate each distinct title one at a time.
How do I populate an array from a table? I don't want to
create any additional tables, which is why I thought of using an array.
In a table called products I have several columns. One column is called titles. I want to grab all distinct titles and insert them into an array.
I then use the array in a for loop to evaluate each distinct title one at a time.
How do I populate an array from a table? I don't want to
create any additional tables, which is why I thought of using an array.