If I were you I would recommend logging in to the database directly and then run a check ont he table. I have experienced this fault that when selecting from a table it can cause the MySQL server to restart.
if you login to the SQL server and then run the following command it will give you the state of the table:
CHECK TABLE GlParams;
If this comes back as saying that the table has been marked as crashed or corrupt you will need to run a repair. I would then refer to the MySQL website for further instructions.