Page 1 of 1

MySQL Query Browser "Edit" disabled

Posted: Wed Aug 18, 2010 5:02 pm
by cah
I created a new table 2010reunion under chung-shan schema and I was able to write into it via CGI.

However, when I was trying to modify the table, I found "Edit" was grayed out disabled.
I searched on internet but didn't find any useful clues.

By default, MySQL Query Browser uses the following command:

Code: Select all

SELECT * FROM 2010reunion r;
It disables the Edit button.
SELECT * FROM 2010reunion r;
SELECT * FROM 2010reunion r;
When I removed the trailing "r" in the command, Edit is back!!!

Code: Select all

SELECT * FROM 2010reunion;
SELECT * FROM 2010reunion;
SELECT * FROM 2010reunion;
I don't really know why the alias would make it disable the function.
Maybe a bug!!!