Open debritto opened 3 years ago
Hi @debritto , Could it be a problem of character encoding, as a conflict with the character ` ? Did you try with that technique ?
function test_db(){
const datas = ["160-Ético", "INTEGRAÇÃO LOCAL"];
var retorno1 = alasql("UPDATE Fatores SET Aspecto = ? WHERE Substituicao = ?", datas);
Logger.log(retorno1);
}
I'm running AlaSQL using Google Apps Script successfully, I can even run Select with Join and other complex selects.
But I'm having problem to run a simple UPDATE statement like this:
When I try to run this function I receive this message:
For the record I'm running this version of AlaSQL: AlaSQL v1.7.3-develop-0be167bcundefined
Below is an example of my table in Google Sheets:
Any help will be precious as I already spent hours trying to solve this!