How do I retrieve an out parameter from a MySQL Stored Procedure in Python using MySQL-Connector?
问题 I'm having trouble accessing an out parameters values from a stored procedure in MySQL(8x) using Python(3.7) and sql connector (8x). My stored procedure is an update procedure and it is working, however I don't know how to get the out value in code. Here is my stored procedure...I simply want to access the out parameter named success in python. CREATE DEFINER=`root`@`localhost` PROCEDURE `update_due_date`(param_bookId int, param_cardNumber int, param_dueDate date, out success int) BEGIN