|
Here's a little background on my problem:
I'm needing to do the following -
for(int i=1000, i < number of enteries in row, i++)
basically I'm wanting to take a row where 1000 represents an ID number. That number goes in ascending order from 1000 to however many enteries there are. I'm wanting to loop through each record (1000 - XXXXX) and make a change to another field in the database specific to the ID number in question. Any thoughts?
|