I use MySqlBulkLoader to load files into the table. The issue I have is that this file could come from both Mac and Windows which means the LineTerminator could be \r\n or just \n. Is there a way to load both these with the same code .. meaning can we specify multiple LineTerminators for the same MySqlBulkLoader or is there a way to change the LineTerminators in the file if it is Mac to CR-LF and then do a bulk load ?
Any help would be appreciated.