Interface OptionalTool

All Known Implementing Classes:
DBMDWrapper, ForeignDBViews, OptimizerTracer, OptTraceViewer

public interface OptionalTool

Interface implemented by optional tools which can be loaded and unloaded. In addition to the methods listed here, an OptionalTool must have a public no-arg constructor so that it can be instantiated by the DataDictionary.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    loadTool(String... configurationParameters)
    Load the tool, giving it optional configuration parameters
    void
    unloadTool(String... configurationParameters)
    Unload the tool, giving it optional configuration parameters
  • Method Details

    • loadTool

      void loadTool(String... configurationParameters) throws SQLException
      Load the tool, giving it optional configuration parameters
      Throws:
      SQLException
    • unloadTool

      void unloadTool(String... configurationParameters) throws SQLException
      Unload the tool, giving it optional configuration parameters
      Throws:
      SQLException