I have this snippet in my python program. I wanted to know if the .callproc function fired the stored procedure that I created in mysql successfully. Maybe check on how many rows were affected or return true if it was successfully executed. How do I achieve that?
delete_customer_email = input("Enter Customer Email : ")
cursor.callproc('proc_delete_in_customer', (delete_customer_email,))
connection.commit()