Class ijMultipleResultSetResult

  • All Implemented Interfaces:
    ijResult

    public class ijMultipleResultSetResult
    extends ijResultImpl
    This impl is intended to be used with multiple resultsets, where the execution of the statement is already complete.
    • Field Detail

      • resultSets

        private java.util.ArrayList<java.sql.ResultSet> resultSets
      • displayColumns

        private int[] displayColumns
      • columnWidths

        private int[] columnWidths
    • Constructor Detail

      • ijMultipleResultSetResult

        public ijMultipleResultSetResult​(java.util.List<java.sql.ResultSet> resultSets,
                                         int[] display,
                                         int[] widths)
                                  throws java.sql.SQLException
        Create a ijResultImpl that represents multiple result sets, only displaying a subset of the columns, using specified column widths.
        Parameters:
        resultSets - The result sets to display
        display - Which column numbers to display, or null to display all columns.
        widths - The widths of the columns specified in 'display', or null to display using default column sizes.
        Throws:
        java.sql.SQLException