I have a problem when I read csv files that contain values like 886468000000, it gets parsed as 8,86468E+11, which is a huge problem for my app, because I need to parse and retain the number in original form.
I google around the documentation and found nothing, I also tried retypging the exponential string representation as float during parsing , but that does not work either, it returns 8, which is obviously incorrect.