When trying to close the cursor and reuse the connection, always getting error "Unread result found.".
As far I have found, there is no way on earth to keep the connection -or even reuse it in a connection pool- if it got an unbuffered cursor (created using MySQLConnection.cursor() Method with buffered = False argument) which has not been completely fetched.
If this was the case it is real miss-conception and serious performance issue using Python connector for MySQL.
As far I have found, there is no way on earth to keep the connection -or even reuse it in a connection pool- if it got an unbuffered cursor (created using MySQLConnection.cursor() Method with buffered = False argument) which has not been completely fetched.
If this was the case it is real miss-conception and serious performance issue using Python connector for MySQL.