(cherry picked from commit a43202ea57)
This commit is contained in:
Andreas Rumpf
2020-10-15 15:49:00 +02:00
committed by narimiran
parent 1dffa67b6e
commit b3c77bb982

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 =