Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
660 views
in Technique[技术] by (71.8m points)

python - mysql.connector.errors.InternalError: Unread result found error while using "DELETE"

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...