I have written a python script which get data from database and process it.
Initially I was using pymysql for connecting database which I changed to MySQL Connector for python. When I started using MySQL Connector I am getting following issue
'ascii' codec can't encode characters in position 14-16: ordinal not in range(128)
I tried by adding charset settings of MySQL Connector but issue still persists.
Do anyone have idea on this issue?