Interface ISQLEntryData


public interface ISQLEntryData

A container for the data from an SQL table entry.

This is to be implemented by other plugins to match their data structures.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Loads the needed data from the result set.
  • Method Details

    • loadData

      void loadData(ResultSet set) throws SQLException

      Loads the needed data from the result set.

      Get the values and don't store the result set anywhere as it will be closed to prevent leaks.

      Parameters:
      set - set to load from
      Throws:
      SQLException - when retrieving a value from the result set goes wrong