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

📄 zaurusdatabasemanager.java

📁 hsqldb是100%java实现的数据库,是一个开放源代码的JAVA数据库 l 具有标准的SQL语法和JAVA接口 l HSQLDB可以自由使用和分发 l 非常简洁和快速的
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* Copyright (c) 2001-2005, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the HSQL Development Group nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG, * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */package org.hsqldb.util;import java.io.IOException;import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;import java.awt.BorderLayout;import java.awt.Button;import java.awt.CardLayout;import java.awt.Dimension;import java.awt.FileDialog;import java.awt.Font;import java.awt.Frame;import java.awt.GridLayout;import java.awt.Insets;import java.awt.Menu;import java.awt.MenuBar;import java.awt.MenuItem;import java.awt.Panel;import java.awt.TextArea;import java.awt.Toolkit;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.KeyEvent;import java.awt.event.KeyListener;import java.awt.event.WindowListener;import java.awt.image.MemoryImageSource;import org.hsqldb.lib.java.JavaSystem;/** * Class declaration * * * @version 1.0.0.1 * @author ulrivo@users * */public class ZaurusDatabaseManager extends DatabaseManagerimplements ActionListener, WindowListener, KeyListener {    // (ulrivo): new buttons to switch the cards    Button butTree;    Button butCommand;    Button butResult;    Button butEditor;    // (ulrivo): Panel pCard with CardLayout inside Frame fMain    Panel      pCard;    CardLayout layoutCard;    // the editor/input form    ZaurusEditor eEditor;    // (ulrivo): variables set by arguments from the commandline    static String defDriver;    static String defURL;    static String defUser;    static String defPassword;    static String defQuery;    static String defDirectory;    static String defDatabase;    static int    defWidth  = 237;    static int    defHeight = 259;    static int    defLocX   = 0;    static int    defLocY   = 0;    /**     * Method declaration     *     *     * @param c     */    public void connect(Connection c) {        if (c == null) {            return;        }        if (cConn != null) {            try {                cConn.close();            } catch (SQLException e) {}        }        cConn = c;        try {            dMeta      = cConn.getMetaData();            sStatement = cConn.createStatement();        } catch (SQLException e) {            e.printStackTrace();        }        refreshTree();    }    /**     * Method declaration     *     *     * @param arg     */    public static void main(String[] arg) {        bMustExit = true;        // (ulrivo): read all arguments from the command line        int i = 0;        while (i < arg.length) {            if (arg[i].equalsIgnoreCase("-driver") && (i + 1 < arg.length)) {                i++;                defDriver = arg[i];            } else if (arg[i].equalsIgnoreCase("-url")                       && (i + 1 < arg.length)) {                i++;                defURL = arg[i];            } else if (arg[i].equalsIgnoreCase("-width")                       && (i + 1 < arg.length)) {                i++;                try {                    defWidth = Integer.parseInt(arg[i]);                } catch (Exception e) {}            } else if (arg[i].equalsIgnoreCase("-height")                       && (i + 1 < arg.length)) {                i++;                try {                    defHeight = Integer.parseInt(arg[i]);                } catch (Exception e) {}            } else if (arg[i].equalsIgnoreCase("-locx")                       && (i + 1 < arg.length)) {                i++;                try {                    defLocX = Integer.parseInt(arg[i]);                } catch (Exception e) {}            } else if (arg[i].equalsIgnoreCase("-locy")                       && (i + 1 < arg.length)) {                i++;                try {                    defLocY = Integer.parseInt(arg[i]);                } catch (Exception e) {}            } else if (arg[i].equalsIgnoreCase("-user")                       && (i + 1 < arg.length)) {                i++;                defUser = arg[i];            } else if (arg[i].equalsIgnoreCase("-password")                       && (i + 1 < arg.length)) {                i++;                defPassword = arg[i];            } else if (arg[i].equalsIgnoreCase("-query")                       && (i + 1 < arg.length)) {                i++;                defQuery = arg[i];            } else if (arg[i].equalsIgnoreCase("-defDirectory")                       && (i + 1 < arg.length)) {                i++;                defDirectory = arg[i];            } else if (arg[i].equalsIgnoreCase("-database")                       && (i + 1 < arg.length)) {                i++;                defDatabase = arg[i];            } else {                showUsage();                return;            }            i++;        }        ZaurusDatabaseManager m = new ZaurusDatabaseManager();        m.main();        // (ulrivo): make default connection if arguments set via the command line        Connection c = null;        if ((defDriver != null && defURL != null) || (defDatabase != null)) {            if (defDatabase != null) {                defDriver   = "org.hsqldb.jdbcDriver";                defURL      = "jdbc:hsqldb:" + defDatabase;                defUser     = "sa";                defPassword = "";            }            try {                Class.forName(defDriver).newInstance();                c = DriverManager.getConnection(defURL, defUser, defPassword);            } catch (Exception e) {                System.out.println("No connection for " + defDriver + " at "                                   + defURL);                e.printStackTrace();            }        } else {            c = ZaurusConnectionDialog.createConnection(m.fMain, "Connect",                    new Insets(defWidth, defHeight, defLocX, defLocY));        }        if (c == null) {            return;        }        m.connect(c);    }    private static void showUsage() {        System.out.println(            "Usage: java org.hsqldb.util.ZaurusDatabaseManager [options]");        System.out.println("where options could be:");        System.out.println(            "If the next two options are set, the specified connection will be used:");        System.out.println("   -driver dr");        System.out.println("   -url address");        System.out.println("-user name");        System.out.println("-password passw");        System.out.println("Alternative the database argument is used,");        System.out.println(            "and the hsqldb Driver Standalone is choosen for user 'sa'.");        System.out.println("-database db");        System.out.println(            "-query qu                   the query qu will be read during initialization");        System.out.println(            "-defaultDirectory defdir    default dir for the file open dialog");        System.out.println(            "If the next two options are set, the frame will be set to the specified values:");        System.out.println("   -width width");        System.out.println("   -height height");        System.out.println("-locX positon left ");        System.out.println("-locY positon top ");        System.out.println("");        System.out.println(            "1. Example: java org.hsqldb.util.ZaurusDatabaseManager +");        System.out.println("  -driver 'org.hsqldb.jdbcDriver' +");        System.out.println("  -url 'jdbc:hsqldb:test'");        System.out.println(            "2. Example: java org.hsqldb.util.ZaurusDatabaseManager +");        System.out.println("  -database 'test'");    }    /**     * Method declaration     *     */    public void main() {        fMain = new Frame("HSQLDB Database Manager for Zaurus");        imgEmpty = createImage(new MemoryImageSource(2, 2, new int[4 * 4], 2,                2));        fMain.setIconImage(imgEmpty);        fMain.addWindowListener(this);        MenuBar bar = new MenuBar();        // no shortcuts used        String[] fitems = {            "-Connect...", "--", "-Open Script...", "-Save Script...",            "-Save Result...", "--", "-Exit"        };        addMenu(bar, "File", fitems);        String[] vitems = {            "-Refresh Tree", "--", "-View Tree", "-View Command",            "-View Result", "-View Editor", "--", "-Results in Grid",            "-Results in Text"        };        addMenu(bar, "View", vitems);        String[] sitems = {            "-SELECT", "-INSERT", "-UPDATE", "-DELETE", "--", "-CREATE TABLE",            "-DROP TABLE", "-CREATE INDEX", "-DROP INDEX", "--", "-SCRIPT",            "-SHUTDOWN", "--", "-Test Script"        };        addMenu(bar, "SQL", sitems);        Menu recent = new Menu("Recent");        mRecent = new Menu("Recent");        bar.add(mRecent);        String[] soptions = {            "-AutoCommit on", "-AutoCommit off", "-Commit", "-Rollback", "--",            "-Disable MaxRows", "-Set MaxRows to 100", "--", "-Logging on",            "-Logging off", "--",            "-Insert test data"    // , "-Transfer"        };

⌨️ 快捷键说明

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