+1
Є відповідь
escaping single quotes
How do I escape the single quotes out of a text string so that I can put it into a SQL Database?
Служба підтримки клієнтів працює на UserEcho
function dbText(str)
{
str = str.replaceAll("'", "'");
return str;
}
For double quotes you would have to use
"