service.database.response.QueryRows Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-service Show documentation
Show all versions of database-service Show documentation
This is a library providing an API for accessing databases via socket connections
package service.database.response;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class QueryRows extends ArrayList {
public static class ResponseEntry {
public static class ColumnEntry {
private String name;
private String type;
public String getName() {
return name;
}
public String getType() {
return type;
}
}
private String table;
private List columns;
private BigInteger rows;
private List