mysqlCMD method

Future<String?> mysqlCMD(
  1. String cmdInline
)

Runs a mysql command. Note that cmdInline should be a inline String, without line-breaks (\n).

Calls execShell executing mysql client inside the container.

Implementation

Future<String?> mysqlCMD(String cmdInline) => _mysqlCMD(cmdInline);