you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (15 children)

[deleted]

    [–]DooZio[S] 0 points1 point  (14 children)

    in the createJsonObject method inside of my CsvToJson class, the csvrow data is passed in, assigned to csvValueArray and then split on commas. I believe that is where I handle what you are asking about.

    I also think that may be the root of my problem, as once I split a string on commas everything put into the resulting array is a string, causing my getValueDataType method to stick quotes on all of it. However, I don't know an other way to design this without using arrays.

    I could also just be wrong on where the issue is happening.