public int listDBs(Server server) throws IOException {
return listDBs(server.getId());
}
public Map<String, String[]> listInfo(int id) {
QueryServerProperties command = new QueryServerProperties(id);
command.execute();
return command.getServerInfo();
}