I have the following String in the format json :
{
"ADT":"0",
"CHD":"0",
"INF":"0"
}
I need to insert in a table in mysql database and retrieve this in Java . I'm using VARCHAR (50) and looks like this:
{
"ADT":"0",
"CHD":"0",
"INF":"0"
I saw that in Mysql it has the type of field called Blob , used for binaries, but I did not understand how to recover it in Java .