feat(sql): Add common whitespace characters, ASCII, HTML, backslashes to literal escaping

This commit is contained in:
Björn Benouarets
2025-11-06 19:34:48 +01:00
parent ad2eaa6ebb
commit fc982db3ef
9 changed files with 52 additions and 17 deletions

12
utils/string.go Normal file
View File

@@ -0,0 +1,12 @@
package utils
func String(s *string) string {
if s == nil {
return ""
}
return *s
}
func Pointer(s string) *string {
return &s
}