This commit is contained in:
Andreas Rumpf
2020-10-15 15:49:00 +02:00
committed by ringabout
parent d0bc5875b0
commit 4ea64743cb

View File

@@ -134,8 +134,7 @@ proc dbQuote*(s: string): string =
of '\'': result.add "\\'"
of '\\': result.add "\\\\"
of '_': result.add "\\_"
of Letters+Digits: result.add c
else: result.add "\\" & $ord(c)
else: result.add c
add(result, '\'')
proc dbFormat(formatstr: SqlQuery, args: varargs[string]): string =