From 2bb806e0e12c74f907985bbd5582d7aa5a598aff Mon Sep 17 00:00:00 2001 From: Tyler Moore Date: Tue, 20 Aug 2024 12:10:53 -0600 Subject: [PATCH] More Standardized Field Quotation --- csv2sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csv2sql.py b/csv2sql.py index 36d80b4..f2b2e1f 100644 --- a/csv2sql.py +++ b/csv2sql.py @@ -78,7 +78,7 @@ def output_insert_statement(args, output=sys.stdout): first = False else: header_row += ', ' - header_row += '"' + parse_header(item) + '"' + header_row += '`' + parse_header(item) + '`' header_row += ') VALUES ' # Set a counter, since there can't be more than 1000 inserts at a time