Seems phpmyadmin trims the end of the sql output when running operation commands .. I really need phpmyadmin to show the full output
Any Ideas?
Seems phpmyadmin trims the end of the sql output when running operation commands .. I really need phpmyadmin to show the full output
Any Ideas?
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.
My problem was even more simple. I was using "show create table", but the result was truncated after a handful of chars.
PHPMyAdmin actually has a small "+options"
link over the results, with simple options like "truncate results". Just needed to untick that !
If you want to edit the files mentionned by Torr, look for :
config.default.php
, in 'librairies" folder, which contains existing parametersconfig.inc.php
, where you should copy/paste the ones you need to.With phpMyAdmin version 5.2.1, this solution solved it for me:
© 2022 - 2024 — McMap. All rights reserved.