Interface ColumnWriter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void write​(JdbcResultRow rs, int column, java.io.OutputStream out)
      Write the column into the specified outputstream.
      void write​(JdbcResultRow rs, java.lang.String columnName, java.io.OutputStream out)
      Write the column into the specified outputstream.
    • Method Detail

      • write

        void write​(JdbcResultRow rs,
                   int column,
                   java.io.OutputStream out)
            throws java.sql.SQLException,
                   java.io.IOException
        Write the column into the specified outputstream.
        Parameters:
        rs - the result set
        column - the column index
        out - the outputstream
        Throws:
        java.sql.SQLException
        java.io.IOException
      • write

        void write​(JdbcResultRow rs,
                   java.lang.String columnName,
                   java.io.OutputStream out)
            throws java.sql.SQLException,
                   java.io.IOException
        Write the column into the specified outputstream.
        Parameters:
        rs - the result set
        columnName - the column name
        out - the outputstream
        Throws:
        java.sql.SQLException
        java.io.IOException