I'm currently learning python connectivity with MySQL
, these are the lines for making tables
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))")
And here is the code block from which I am getting error:
#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")
Here is the error I am getting:
Traceback (most recent call last):
File "C:/Users/win10/.spyder-py3/kj7.py", line 34, in <module>
mycursor.execute(sql)
File "C:Userswin10AppDataLocalProgramsPythonPython38-32libsite-packagesmysqlconnectorcursor.py", line 547, in execute
self._connection.handle_unread_result()
File "C:Userswin10AppDataLocalProgramsPythonPython38-32libsite-packagesmysqlconnectorconnection.py", line 1286, in handle_unread_result
raise errors.InternalError("Unread result found")
mysql.connector.errors.InternalError: Unread result found
Please tell if I should give any more part of code.
question from:
https://stackoverflow.com/questions/66049614/mysql-connector-errors-internalerror-unread-result-found-error-while-using-del 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…