HOW TO CONVERT JSON INFOTABLE TO MSSQL TABLE
The error message I receive is: unable to convert from org.Mozilla.javascript,uniqueTag to info table.
var json=me.jsondata_JS();
//result = JSON;
for (let i=0;i<json.lenght;i++){
var con=me.jstsql({
id: json[i].id /* INTEGER */,
email: json[i].email /* STRING */,
first_name: json[i].first_name /* STRING */,
last_name: json[i].last_name /* STRING */,
avatar: json[i].avatar /* STRING */
});
result = con;
}

