I got a dataset where each line is in json format.
{"name":"alpha", "id":"111"}\n
{"name":"beta", "id":"222"}\n
...
But how do I load it into a mysql database? The dataset is quite large and it is impossible to parse it line by line in java.
I got a dataset where each line is in json format.
{"name":"alpha", "id":"111"}\n
{"name":"beta", "id":"222"}\n
...
But how do I load it into a mysql database? The dataset is quite large and it is impossible to parse it line by line in java.