How can I get MySQL workbench to always show the result grid?

42,860

Solution 1

Here's one way you can do it. Pin the results tab to force it to remain and be unaffected by UPDATE statements. Do that by right-clicking the result tab and choose "Pin Tab" from the context-menu, or left-click the little pin icon to toggle it. Now, execute your other queries and then refresh the pinned tab (there's a "refresh" icon in the result grid's menu).

Solution 2

Go to Mysql Workbench preferences. In Fonts, change de Resultset Grid font to Arial 11.

Its works for me.

Share:
42,860

Related videos on Youtube

asteri
Author by

asteri

Updated on September 18, 2022

Comments

  • asteri
    asteri almost 2 years

    When I execute a SELECT query in the MySQL workbench, the result grid appears. Then, when I execute an UPDATE, the grid disappears. Then when I run a SELECT again to view the changes, it reappears.

    This is incredibly annoying and causes the screen to constantly fluctuate up and down. Is there any way I can give the result grid a permanent home somewhere?

    Even if it just stayed put somewhere and was cleared of data when the UPDATE ran, that would be perfect.

    • Ryan
      Ryan almost 5 years
      I had this problem (Results Grid would never appear anymore) on macOS 10.14.5 with Workbench 6.3.9.CE. Upgrading to Workbench 8.0.17.CE fixed it.
  • asteri
    asteri over 9 years
    Just about as perfect as I could expect! Thank you so much. Knew there had to be some way.