execute method
Implementation
Future<CliResult> execute({
  required String statement,
  required String user,
  required String database,
  String? host,
  int? port,
  String? password,
  String? workingDirectory,
  bool produceXml = false,
}) {
  return _execute(
    statement: statement,
    user: user,
    database: database,
    password: password,
    workingDirectory: workingDirectory,
    host: host,
    port: port,
    extraArgs: [
      if (produceXml) "--xml",
    ],
  );
}