Having recently installed a fresh copy of MySQL 8.0.21 on Windows, I took careful note of parsing changes in the MySQL Shell. It was tedious that we lost multiple statement processing, which is supported in the MySQL Client and MySQL Workbench because it uses MySQL Client.
It was frustrating when I subsequently discovered that the MySQL
Shell took away the ability to write log files by removing the
TEE
and NOTEE
commands. I suspected
that since MySQL Workbench was still using the MySQL Client that
it should be in the code tree. In fact, the
mysql.exe
client is in this directory:
C:\Program Files\MySQL\MySQL Server 8.0\bin
So, I immediately created a batch file to put the MySQL Client
into my %PATH%
environment variable when needed. I
used this time tested DOS command: …