If I create lists to hold a column each for what will be a database table. How would I loop though the ID list to add one row at a time to a new object. So each object will hold one row for what will be a database table.
Example Lists
ListID[1,2,3,4,5]
List1[34,56,34,345,55]
list2[644,64,232,44,1]
list3[622,12,44,55,01]
I then want to create a function that will iterate though ListID and create a 'list
object' eg, [1, 34, 644, 622]
would be the first object then [2, 56, 64, 12]
. I'm not sure how to preform this but keep it in a format that can still be persisted to a database table