Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpmyadmin show full sql output

Seems phpmyadmin trims the end of the sql output when running operation commands .. I really need phpmyadmin to show the full output

enter image description here

Any Ideas?

like image 725
Webby Avatar asked Jun 05 '12 02:06

Webby


1 Answers

After a quick search on Google i found this: http://wiki.phpmyadmin.net/pma/Config#MaxCharactersInDisplayedSQL

It seems that you just have to edit the config file of PHPmyadmin and set $cfg['MaxCharactersInDisplayedSQL'] = 1000; to the value you want.

like image 129
torr Avatar answered Oct 31 '22 12:10

torr