mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
fixes merge conflict
This commit is contained in:
@@ -105,7 +105,6 @@ proc dbError*(db: DbConn) {.noreturn.} =
|
||||
|
||||
proc dbQuote*(s: string): string =
|
||||
## DB quotes the string.
|
||||
if s.isNil: return "NULL"
|
||||
result = "'"
|
||||
for c in items(s):
|
||||
if c == '\'': add(result, "''")
|
||||
|
||||
Reference in New Issue
Block a user