diff options
-rw-r--r-- | lib/impure/db_mysql.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/impure/db_mysql.nim b/lib/impure/db_mysql.nim index c3bcee677..82f27537c 100644 --- a/lib/impure/db_mysql.nim +++ b/lib/impure/db_mysql.nim @@ -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 = |