I’m running a select query using system.db.runNamedQuery.
The query returns several records, each record has 8 columns / fields
results = system.db.runNamedQuery("PathTo/SelectQuery")
the data type of results is BasicStreamingDataset
My question is . . Is it possible to assign values to 1 field in each record of the BasicStreamingDataset?
I want to loop through results, calculate a value, and assign the value to a field in results?