I am populating a Dataset by means of SQL. After this, I parse the dataset to make the fields more ledgible (like change unix times (GMT) to EST).
Is it more efficient to iterate column by column or row by row for means to of parsing the items (fields). Right now I am parsing column by column.
Any ideas? I am not real familiar with how efficient this build-in function is.
Ex:
Dim DR As DataRow
For Each DR In DS_Study.Tables(0).Rows()
DR.Item(ColumnNumber) = ....Parsed Data....
Next
Is it more efficient to iterate column by column or row by row for means to of parsing the items (fields). Right now I am parsing column by column.
Any ideas? I am not real familiar with how efficient this build-in function is.
Ex:
Dim DR As DataRow
For Each DR In DS_Study.Tables(0).Rows()
DR.Item(ColumnNumber) = ....Parsed Data....
Next