Files
jadb/lib/util/sqlite_utils.dart

4 lines
93 B
Dart

String escapeStringValue(String value) {
return "'" + value.replaceAll("'", "''") + "'";
}