I am starting to learn database programming. I am using absolute database if it matters.
In my table, i have 3 fields.:
ImageNo (ImageIndex is the index pointing to ImageNo)
ImagePath (String)
ImageCurve (String)
I want to be able to retrieve the imagecurve field by knowing the record #. I really do not want to find the index because it may not match the record #.
If i have 10 records, the imageNo field could have these values 1,3,4,5,8,9,....Depending if i have deleted/added record. So if i want to get the imageCurve field value of the 3rd record that has an ImageNo of 4, how can I do that?
I hope i am making sense and it is an easy answer.
Thanks.
Pierrotsc
In my table, i have 3 fields.:
ImageNo (ImageIndex is the index pointing to ImageNo)
ImagePath (String)
ImageCurve (String)
I want to be able to retrieve the imagecurve field by knowing the record #. I really do not want to find the index because it may not match the record #.
If i have 10 records, the imageNo field could have these values 1,3,4,5,8,9,....Depending if i have deleted/added record. So if i want to get the imageCurve field value of the 3rd record that has an ImageNo of 4, how can I do that?
I hope i am making sense and it is an easy answer.
Thanks.
Pierrotsc