Command command = Command.build("mysql");
command.addQuoted("--user=", username);
command.addQuoted("--host=", hostname);
command.addQuoted("--password=", password);
command.addArgument(Argument.buildQuoted("--execute=", sql).setMasked("--execute=" + Command.MASKED));
return target.executeCommand(command);
}
public ProcessExecution execute(String sql) throws OpsException {