fix wasm session and mysql placeholder state

This commit is contained in:
udo
2026-07-06 07:54:01 +00:00
parent 991a0f62b4
commit a6cb1c0390
4 changed files with 35 additions and 2 deletions
+1 -1
View File
@@ -294,7 +294,7 @@ String MySQL::parse_query_parameters(String query, StringMap map)
}
else if(mode == 1) // identifier mode
{
if(isalnum(c))
if(isalnum(c) || c == '_')
{
identifier.append(1, c);
}