Hi,
when using in2csv to generate csv from json files, the default behaviour is to use slash "/" to make subcategories:
Below an example of name in a csv generated by in2csv:
author/avatar | author/name | id | numReplies
Now if I want to use csvsql to get "author/name" I get an error message
sql does not like slashes "/" in name field...
It took me a while to figure out how to escape "/" in sql. One can indeed use [author/name] and then it will work.
So can we apply any of the following fixe:
Either make sure in2csv does not use "/" in the naming for subcategories? For instance using underscore or "." or any character that would be more sql friendly?
Either add a similar example in the documentation so that people are not confused like I was?
Hi, when using in2csv to generate csv from json files, the default behaviour is to use slash "/" to make subcategories: Below an example of name in a csv generated by in2csv: author/avatar | author/name | id | numReplies
Now if I want to use csvsql to get "author/name" I get an error message
sql does not like slashes "/" in name field...
It took me a while to figure out how to escape "/" in sql. One can indeed use [author/name] and then it will work. So can we apply any of the following fixe: