Interface SQLEditor


public interface SQLEditor
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    show(JFrame parent, boolean modal)
     
    void
    show(JFrame parent, boolean modal, LocalDataSource dataSource)
    Shows the SQL Debug Editor if the current user is admin.
  • Method Details

    • show

      void show(JFrame parent, boolean modal, LocalDataSource dataSource)
      Shows the SQL Debug Editor if the current user is admin.
      Parameters:
      parent - Parent frame
      modal - true if the editor should be modal
      dataSource - A data source to use to execute queries. The data source will be closed when the editor closes.
    • show

      default void show(JFrame parent, boolean modal)