A bit of an odd question perhaps.
I'm trying to Store a JSON string appropriately in a CSV column as a string. It works OK when generating the CSV file, however parsing the CSV file with the JSON in it is a problem.
I've tried "{"prop": "Val"...}"
, "{""prop"": ""Val""...}"
, "{\"prop\": \"Val\"...}"
, "{\""prop\"": \""Val\""...}"
However none of them parse well at all.
Please help!