Michael Dye
Michael Dye

Reputation: 33

Launch MySQL Command Line Client directly within MySQL Workbench

Is their a way to Launch MySQL Command Line Client directly within MySQL Workbench? Similar to how Visual Studio Code has a terminal pane by the output.

I am trying to setup logging mysql> tee and mysql> notee commands form MySQL Workbench with ought having to open a separate MySQL 8.0 Command Line Client.

Another example would be running a basic mysql> help from MySQL Workbench without having to open a separate MySQL 8.0 Command Line Client.

Upvotes: 3

Views: 1350

Answers (1)

Mike Lischke
Mike Lischke

Reputation: 53337

No, that is not possible. The only shell that you can use within Workbench is the Python shell to write plugins or access the internal GRT tree.

Upvotes: 1

Related Questions