lib/util: move escapeStringValue to sqlite utils

This commit is contained in:
2025-05-13 11:47:51 +02:00
parent 7abdb7f02f
commit 8ddba55e43
2 changed files with 6 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
String escapeStringValue(String value) {
return "'" + value.replaceAll("'", "''") + "'";
}