public interface  org.apache.drill.jdbc.DrillResultSet extends java.lang.Object implements java.sql.ResultSet
{
public abstract java.lang.String getQueryId() throws java.sql.SQLException;
public abstract java.lang.Object unwrap(java.lang.Class) throws java.sql.SQLException;
public abstract boolean isWrapperFor(java.lang.Class) throws java.sql.SQLException;
public abstract java.lang.String getString(int) throws java.sql.SQLException;
public abstract byte getByte(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract short getShort(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract int getInt(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract long getLong(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract float getFloat(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract double getDouble(int) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException;
public abstract java.lang.String getString(java.lang.String) throws java.sql.SQLException;
public abstract byte getByte(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract short getShort(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract int getInt(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract long getLong(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract float getFloat(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract double getDouble(java.lang.String) throws org.apache.drill.jdbc.SQLConversionOverflowException, java.sql.SQLException;
public abstract java.math.BigDecimal getBigDecimal(java.lang.String, int) throws java.sql.SQLException;
public abstract java.lang.Object getObject(int) throws java.sql.SQLException;
public abstract java.lang.Object getObject(java.lang.String) throws java.sql.SQLException;
}