2
I have a Mysql Server 5.7 installed on a Windows server, when I change the variable "max_execution_time" to 6000, when I run the query below with ODBC to confirm that the change was made:
show variables like '%max_execution%';
The following value is returned: 30000
Queries used to change variable value:
SET max_execution_time = 60000;
SET GLOBAL max_execution_time = 60000;
SET SESSION max_execution_time = 60000;
Note: This problem only happens with ODBC, because I did the same test with php and return value was 60000.
Does anyone have any idea what it might be?