I have a global rowset that is populated in my app correctly in one of the methods.I iterate through the rowset using a For Each - Next loop . Afterwards all the columns in the rowset get set to Nil?? Any ideas why this would be happening? Does iterating set them to Nil
gPicList = db.SelectSQL("SELECT * FROM Pictures " +_
"inner join locations on lid = Locid where detailid = " + gDetailID)
for each dr as databaserow in gpiclist
…
Next
15 posts - 5 participants