dk.eobjects.metamodel.data.DataSet

The DataSet class is a central class of MetaModel. It represents a datastore-neutral set of data, equivalent to a ResultSet in JDBC-world. The main difference between DataSet and ResultSet is that DataSet can encompass data from all kinds of datastores, including CSV-files and Excel spreadsheets.

Important methods

  • boolean next();
  • Row getRow();
  • TableModel toTableModel();
  • List<Object[]> toObjectArrays()