Importing A Csv File Into Sql Server Using Python
I'm currently experiencing a problem importing a csv file to sql using a minor variation of python coding used in a previous answer:- Insert csv into sql database I've run into an
Solution 1:
This is possibly an escaping issue. It would be safer if you passed the values as a list of parameters to execute()
rather than manually building a string. This will ensure that they are correctly escaped.
insert = 'INSERT INTO {} ('.format(table) + ', '.join(headers) + ') VALUES ({})' \
.format(', '.join(len(headers) * '?')) # Add parameter placeholders as ?
for row in csvFile:
values = map((lambda x: x.strip()), row) # No need for the quotes
cursor.execute(insert, values) # Pass the list of values as 2nd argument
conn.commit()
Post a Comment for "Importing A Csv File Into Sql Server Using Python"