Moustafa
2012-08-14 19:45:03 UTC
Well I tried so many times writing a database but i kept getting errors.
does anybody knows how to make this in a database table?
protected String ip, name, description;
protected int portId, id;
protected boolean online;
and thats how they work :
servers.add(new ListedServer(results.getString("server_i…
, results.getString("server_name")
, results.getString("discription")
, results.getInt("server_port")
, results.getInt("id")
,results.getString("status").equals(…
and MORE EXAMPLE
private ListedServer(String ip, String name, String description, int portId, int id, boolean online) {
this.ip = ip;
this.name = name;
this.description = description;
this.portId = portId;
this.id = id;
this.online = online;
can some be kind enough to write me a table of 6 columns?
and it needs to have texts inside them just give me hints were to put the text and ip thx