Interface IResult

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.sql.Array getArray​(int columnIndex)  
      java.sql.Array getArray​(java.lang.String columnName)  
      java.io.InputStream getAsciiStream​(int columnIndex)  
      java.io.InputStream getBinaryStream​(int columnIndex)  
      java.lang.Boolean getBoolean​(int columnIndex)  
      boolean getBoolean​(int columnIndex, boolean nullValue)  
      java.lang.Byte getByte​(int columnIndex)  
      byte getByte​(int columnIndex, byte nullValue)  
      byte[] getBytes​(int columnIndex)  
      java.util.List<java.lang.String> getColumnNames()  
      java.sql.Date getDate​(int columnIndex)  
      java.lang.Double getDouble​(int columnIndex)  
      double getDouble​(int columnIndex, double nullValue)  
      java.lang.Float getFloat​(int columnIndex)  
      float getFloat​(int columnIndex, float nullValue)  
      java.lang.Integer getInteger​(int columnIndex)  
      int getInteger​(int columnIndex, int nullValue)  
      java.lang.Long getLong​(int columnIndex)  
      long getLong​(int columnIndex, long nullValue)  
      int getNumberOfValues()  
      java.lang.Object getObject​(int columnIndex)  
      java.lang.Object getObject​(java.lang.String columnName)  
      int getRow()  
      java.lang.Short getShort​(int columnIndex)  
      short getShort​(int columnIndex, short nullValue)  
      java.lang.String getString​(int columnIndex)  
      java.lang.String getString​(java.lang.String string)  
      java.sql.Time getTime​(int columnIndex)  
      java.sql.Timestamp getTimestamp​(int columnIndex)  
      boolean hasColumn​(java.lang.String string)  
    • Method Detail

      • getRow

        int getRow()
            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getString

        java.lang.String getString​(int columnIndex)
                            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getString

        java.lang.String getString​(java.lang.String string)
                            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getBoolean

        java.lang.Boolean getBoolean​(int columnIndex)
                              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getBoolean

        boolean getBoolean​(int columnIndex,
                           boolean nullValue)
                    throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getByte

        java.lang.Byte getByte​(int columnIndex)
                        throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getByte

        byte getByte​(int columnIndex,
                     byte nullValue)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getShort

        java.lang.Short getShort​(int columnIndex)
                          throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getShort

        short getShort​(int columnIndex,
                       short nullValue)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getInteger

        java.lang.Integer getInteger​(int columnIndex)
                              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getInteger

        int getInteger​(int columnIndex,
                       int nullValue)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getLong

        java.lang.Long getLong​(int columnIndex)
                        throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getLong

        long getLong​(int columnIndex,
                     long nullValue)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getFloat

        java.lang.Float getFloat​(int columnIndex)
                          throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getFloat

        float getFloat​(int columnIndex,
                       float nullValue)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getDouble

        java.lang.Double getDouble​(int columnIndex)
                            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getDouble

        double getDouble​(int columnIndex,
                         double nullValue)
                  throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getBytes

        byte[] getBytes​(int columnIndex)
                 throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getDate

        java.sql.Date getDate​(int columnIndex)
                       throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getTime

        java.sql.Time getTime​(int columnIndex)
                       throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getTimestamp

        java.sql.Timestamp getTimestamp​(int columnIndex)
                                 throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getAsciiStream

        java.io.InputStream getAsciiStream​(int columnIndex)
                                    throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getBinaryStream

        java.io.InputStream getBinaryStream​(int columnIndex)
                                     throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getObject

        java.lang.Object getObject​(int columnIndex)
                            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getObject

        java.lang.Object getObject​(java.lang.String columnName)
                            throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getArray

        java.sql.Array getArray​(int columnIndex)
                         throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getArray

        java.sql.Array getArray​(java.lang.String columnName)
                         throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getNumberOfValues

        int getNumberOfValues()
                       throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • hasColumn

        boolean hasColumn​(java.lang.String string)
                   throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getColumnNames

        java.util.List<java.lang.String> getColumnNames()
                                                 throws java.sql.SQLException
        Throws:
        java.sql.SQLException