Date format for CSV??
I have a csv file that I read in. The first two fields are date and time respectively.
The format in the CSV file is shown below.
1.9.2016,11:21:49.562,,,,,,,
day month year, hours:minutes:seconds:milli,
How do I get the GetCSVFile dateFormat: undefined /*STRING */, to work?
Some of the options I have tried....
dateFormat: 'yyyy-MM-dd HH:mm:ss'/*STRING */,
dateFormat: 'yyyy-MM-dd'/*STRING */,
dateFormat: 'dd-MM-yyyy' /*STRING */,
dateFormat: 'dd.MM.yyyy' /*STRING */,
dateFormat: 'ddMMyyyy' /*STRING */,
I used this as a reference for the some of my understanding of how this should work.
SimpleDateFormat : Date Format « Data Type « Java Tutorial
And pretty much any variation in there with different errors each time.
My data shape field base type is set to DATETIME
The only way to read the data in is to change the field base type to string. Which defeats the purpose
Does anybody have any suggestions as to how I can read in these correctly?

