Код: Выделить всё
import mysql.connector
mydb=mysql.connector.connect(host="localhost",user="root",password="root")
#CREATING DATABASE AND TABLE
mycursor=mydb.cursor()
mycursor.execute("create database if not exists store")
mycursor.execute("use store")
mycursor.execute("create table if not exists signup(username varchar(20),password varchar(20))")
mycursor.execute("create table if not exists buynewbooks(nameofbook varchar(30))")
mycursor.execute("create table if not exists feedback(rating varchar(11))")
Код: Выделить всё
#delete acc
elif ch==3:
mycursor.execute("select username from signup")
u=str(input("enter your registerd USERNAME"))
p=str(input("enter your account password"))
sql = "DELETE FROM signup WHERE username = u AND password = p"
mycursor.execute(sql)
mydb.commit
print("your account has been removed")
Код: Выделить всё
Traceback (most recent call last):
File "C:/Users/win10/.spyder-py3/kj7.py", line 34, in
mycursor.execute(sql)
File "C:\Users\win10\AppData\Local\Programs\Python\Python38-32\lib\site-packages\mysql\connector\cursor.py", line 547, in execute
self._connection.handle_unread_result()
File "C:\Users\win10\AppData\Local\Programs\Python\Python38-32\lib\site-packages\mysql\connector\connection.py", line 1286, in handle_unread_result
raise errors.InternalError("Unread result found")
mysql.connector.errors.InternalError: Unread result found
Подробнее здесь: https://stackoverflow.com/questions/660 ... -using-del