⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 interactivesql.java.svn-base

📁 rmi server web service for a stock track systerm
💻 SVN-BASE
字号:
package ase.assignment.sts.db.tool;

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.SQLException;
import java.sql.Statement;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextArea;
import javax.swing.JTextField;

import ase.assignment.sts.db.DBHandler;
import ase.assignment.sts.utils.STSConstants;

public class InteractiveSQL extends JFrame implements ActionListener {
	public static void main(String[] args) {
		// Set default values for the command line args
		String user = STSConstants.DB_USERNAME;
		String password = STSConstants.DB_PASSWORD;
		String url = STSConstants.DB_URL;
		String driver = STSConstants.DB_DRIVER;

		// Up to 4 arguments in the sequence database url,driver url, user ID,
		// password
		switch (args.length) {
		case 4: // Start here for four arguments
			password = args[3];
			// Fall through to the next case
		case 3: // Start here for three arguments
			user = args[2];
			// Fall through to the next case
		case 2: // Start here for two arguments
			driver = args[1];
			// Fall through to the next case
		case 1: // Start here for one argument
			url = args[0];
		}
		InteractiveSQL theApp = new InteractiveSQL(driver, url, user, password);
	}

	public InteractiveSQL(String driver, String url, String user,
			String password) {
		super("InteractiveSQL"); // Call base constructor
		setBounds(0, 0, 400, 300); // Set window bounds
		setDefaultCloseOperation(DISPOSE_ON_CLOSE); // Close window operation
		addWindowListener(new WindowAdapter() { // Listener for window close
			// Handler for window closing event
			public void windowClosing(WindowEvent e) {
				dispose(); // Release the window resources
				System.exit(0); // End the application
			}
		});

		// Add the input for SQL statements at the top
		command.setToolTipText("Key SQL commmand and press Enter");
		getContentPane().add(command, BorderLayout.NORTH);

		// Add the status reporting area at the bottom
		status.setLineWrap(true);
		status.setWrapStyleWord(true);
		getContentPane().add(status, BorderLayout.SOUTH);

		// Create the menubar from the menu items
		JMenu fileMenu = new JMenu("File"); // Create File menu
		fileMenu.setMnemonic('F'); // Create shortcut
		fileMenu.add(clearQueryItem); // Add clear query item
		fileMenu.add(exitItem); // Add exit item
		menuBar.add(fileMenu); // Add menu to the menubar
		setJMenuBar(menuBar); // Add menubar to the window

		// Add listeners for text field and menu items
		command.addActionListener(this);
		clearQueryItem.addActionListener(this);
		exitItem.addActionListener(this);

		// Establish a database connection and set up the table

		statement = DBHandler.getInstance().createStatement();

		model = new ResultsModel(); // Create a table model
		JTable table = new JTable(model); // Create a table from the model
		table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); // Use
		// scrollbars
		resultsPane = new JScrollPane(table); // Create scrollpane for
		// table
		getContentPane().add(resultsPane, BorderLayout.CENTER);

		pack();
		setVisible(true);
	}

	// Handles action events for menu items and the text field
	public void actionPerformed(ActionEvent e) {
		Object source = e.getSource();
		if (source == command) { // Enter key for text field input
			executeSQL();
		} else if (source == clearQueryItem) { // Clear query menu item
			command.setText(""); // Clear SQL entry
		} else if (source == exitItem) { // Exit menu item
			dispose(); // Release the window resources
			System.exit(0); // End the application
		}
	}

	// Executes an SQL command entered in the text field
	public void executeSQL() {
		String query = command.getText(); // Get the SQL statement
		if (query == null || query.length() == 0) { // If there's nothing we are
			// done
			return;
		}
		try {
			model.setResultSet(statement.executeQuery(query));
			status.setText("Resultset has " + model.getRowCount() + " rows.");
		} catch (SQLException sqle) {
			status.setText(sqle.getMessage()); // Display error message
		}
	}

	JTextField command = new JTextField(); // Input area for SQL
	JTextArea status = new JTextArea(3, 1); // Output area for status and errors
	JScrollPane resultsPane;

	JMenuBar menuBar = new JMenuBar(); // The menu bar
	JMenuItem clearQueryItem = new JMenuItem("Clear query"); // Clear SQL
	// item
	JMenuItem exitItem = new JMenuItem("Exit"); // Exit item

	Statement statement; // Statement object for queries
	ResultsModel model; // Table model for resultset
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -