error! C:\file\example.db is not UTF-8 encoded ipython notebook
问题 please help! I am using sqlite3 in ipython notebook to create an SQL database. I think I have successfully created the database, but when I go to look at it I am receiving an encoding UTF8 error. Here is my code: import sqlite3 conn=sqlite3.connect('example.db') c=conn.cursor() c.execute('''DROP TABLE PROFILE''') c.execute('''CREATE TABLE PROFILE ( FIRSTNAME TEXT PRIMARY KEY unique NOT NULL, LASTNAME TEXT NOT NULL, EMAILADDRESS TEXT NOT NULL, PASSWORD TEXT NOT NULL, CURRENTJOBTITLE TEXT NOT