I have a Procedure that is not having OUT or IN, I don't have the permission to change the Procedure.
cursor = connection.cursor()
cursor.callproc('store_procedure',())
res = cursor.fetchall()
I tried everything but I can't get the results from MySQL Procedure.
The procedure without Python is running and return the results, it takes about 20sec but is return something.
The Procedure returns multiple rows.
Can I get the results without change the Procedure?
Use MySQLdb package for python.