protected String table;
protected Query(AdminBase admin, Object object) {
this.admin = admin;
this.object = object;
this.reflec = new ReflectionUtilities();
this.from = new StringBuilder();
this.select = new StringBuilder();
this.table = this.reflec.readTableName(this.object.getClass());
this.from.append(this.table);