22 file_parser(default_open_mode, false, true, true),
23 connection_parser(local),
24 default_open_mode(default_open_mode),
25 default_with_database(with_database)
48 bool content_check =
true;
49 if (arg_index < argc && std::strcmp(argv[arg_index],
"--nocheck") == 0)
52 content_check =
false;
54 std::cerr <<
"content_check = " << content_check <<
'\n';
56 bool with_database = default_with_database;
57 if (arg_index < argc && std::strcmp(argv[arg_index],
"--nodb") == 0)
60 with_database =
false;
73 Connection &connection = connection_parser.build
84 throw Exception(
"server file must be used with a network or ssh connection");
86 std::cerr <<
"Creating client data... ";