I'm in the beginning stages of trying to move some data from Google Sheets into a MySQL DB. I'm starting with one sheet that contains some user data. I save the sheet as a csv, then select that csv through MySQL Workbench's Table Import Wizard.
When I do, I receive the following error:
Unhandled exception: 'ascii' codec can't decode byte 0xc3 in position 178: ordinal not in range(128)
Some initial troubleshooting has revealed to me that I think the problem is a character in a name - a french user with the first name Aimée. Based on the error message, I've been trying to convert the google sheet data to utf-8 (as opposed to ASCII) before downloading as a csv, but everything I'm reading seems to say that simply downloading as a .csv should solve the problem.
Steps to reproduce:
- download Google Sheet as .csv
- Open MySQL Workbench and select existing table
- Select Table Data Import Wizard
- When prompted, select the .csv file I've just saved as the source file
- Select my existing table in the MySQL db as the destination table
- Click "Next", and receive error.