Displaying 1 result from an estimated 1 matches for "com_stmt".
Did you mean:
com_start
2012 Dec 13
0
max_prepared_stmt_count exceeded using RODBC + 64-bit win7
...In my setup the MySQL global variable max_prepared_stmt_count has the
default setting of 16K. If I reset the variable higher, I can run a while
longer, but this is not a permanent solution.
Digging around for a solution, I see that the following may cast some
light:
show global status like 'com_stmt%';
+-------------------------+-------+
| Variable_name | Value |
+-------------------------+-------+
| Com_stmt_close | 0 |
| Com_stmt_execute | 49931 |
| Com_stmt_fetch | 0 |
| Com_stmt_prepare | 36 |
| Com_stmt_reprepare | 0 |
| C...