I'm trying to do something very simple, yet I can't seem to find the proper way to do it.
I have a MySqlDataAdapter object which contains the result of a query. I want to parse the results of this query before rendering them in an ASP.NET Repeater. (convert date from Unix Epoch to human readable, that sort of things).
So far, I'm unable to simply find how to create a loop that will allow me to move row by row in my SQL result, parse a couple of fields and change the content of some fields.
I'm also uncertain if I can do this directly from the MySqlDataAdapter, or from a DataSet, or from a DataTable. Most of the examples I have seen on the web don't cover that specific topic.