I have found a problem when insert data about time.
Usually, User will save CSV file from tester to me at server.
I'll read and insert data by program.
I have problem with column time cause no have symbol ":" to indicating Hour, minute and second
Example : 231620 I fixed by substring function.
string start_InspHour_Converted =
start_InspHour.Substring(0, 2) + ":" +
start_InspHour.Substring(2, 2) + ":" +
start_InspHour.Substring(4, 2);
But some file has wrong format.
Example : 22411 It should be 022411 for 02:24:11
I think column time have to change format to text.
I don't know why user can't fix it they do nothing and still send me more files.
I need help to fixed this by coding but I don't know keyword to search.
Sorry for my english