Package net.sourceforge.squirrel_sql.fw.gui

Examples of net.sourceforge.squirrel_sql.fw.gui.SQLCatalogsComboBox


    gbc = new GridBagConstraints(0,0,1,1,0,0,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0,0,0,5),0,0);
    JLabel lblCatalogs = new JLabel(s_stringMgr.getString("SessionPanel.catalog"));
    add(lblCatalogs, gbc);


    _catalogsCmb = new SQLCatalogsComboBox();
    gbc = new GridBagConstraints(1,0,1,1,1,0,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0,0,0,5),0,0);
    add(_catalogsCmb, gbc);

    _catalogsCmb.setCatalogs(catalogs, selected);
View Full Code Here


    public void actionPerformed(ActionEvent evt)
    {
      Object src = evt.getSource();
      if (src instanceof SQLCatalogsComboBox)
      {
        SQLCatalogsComboBox cmb = (SQLCatalogsComboBox)src;
        String catalog = cmb.getSelectedCatalog();
        if (catalog != null)
        {
          try
          {
            getSession().getSQLConnection().setCatalog(catalog);
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.fw.gui.SQLCatalogsComboBox

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.