php - How can I see the exact queries phpmyadmin is running? -
How can I see how SQL queries run to execute the phpmyadmin command? I do not want to create an easy database, first using phpmyadmin, then using php code. But when I create a table with phpmyadmin, it does not show the commands that it uses to create or select tables.
Is there any way? :)
Thank you!
ps: mysql version: 5.6.12
You can set your Next you can monitor that file by using the tail with this file: And you will see all the questions at real time :) my .cnf can edit the file and add this line:
log = / var / log / mysql.log
tail -f var / log / mysql / mysql.log
Comments
Post a Comment