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

📄 testalltypes.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.test;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Random;import org.hsqldb.lib.StopWatch;import org.hsqldb.persist.HsqlProperties;/** * Test large tables containing columns of different types. * @author fredt@users */public class TestAllTypes {    protected String url = "jdbc:hsqldb:";//    protected String filepath = ".";    protected String filepath = "/hsql/testalltypes/test";//    protected String filepath = "hsql://localhost/yourtest";    boolean    network = true;    String     user;    String     password;    Statement  sStatement;    Connection cConnection;    // prameters    boolean reportProgress  = false;    boolean cachedTable     = true;    int     cacheScale      = 12;    int     logType         = 3;    int     writeDelay      = 60;    boolean indexZip        = true;    boolean indexLastName   = false;    boolean addForeignKey   = false;    boolean refIntegrity    = true;    boolean createTempTable = false;    // introduces fragmentation to the .data file    boolean deleteWhileInsert         = false;    int     deleteWhileInsertInterval = 10000;    //    int bigrows = 1000;    protected void setUp() {        user     = "sa";        password = "";        try {            sStatement  = null;            cConnection = null;            HsqlProperties props      = new HsqlProperties(filepath);            boolean        fileexists = props.checkFileExists();            Class.forName("org.hsqldb.jdbcDriver");            if (!network &&!fileexists == false) {                cConnection = DriverManager.getConnection(url + filepath,                        user, password);                sStatement = cConnection.createStatement();                sStatement.execute("SET SCRIPTFORMAT " + logType);                sStatement.execute("SET LOGSIZE " + 400);                sStatement.execute("SET WRITE_DELAY " + writeDelay);                sStatement.execute("SHUTDOWN");                cConnection.close();                props.load();                props.setProperty("hsqldb.cache_scale", "" + cacheScale);                props.save();                cConnection = DriverManager.getConnection(url + filepath,                        user, password);                sStatement = cConnection.createStatement();            }        } catch (Exception e) {            e.printStackTrace();            System.out.println("TestSql.setUp() error: " + e.getMessage());        }    }    /**     * Fill up the cache     *     *     */    public void testFillUp() {        StopWatch sw        = new StopWatch();        int       smallrows = 0xfff;        double    value     = 0;        String ddl1 = "DROP TABLE test IF EXISTS;"                      + "DROP TABLE zip IF EXISTS;";        String ddl2 = "CREATE TABLE zip( zip INT IDENTITY );";        String ddl3 = "CREATE " + (cachedTable ? "CACHED "                                               : "") + "TABLE test( id INT IDENTITY,"                                                   + " firstname VARCHAR, "                                                   + " lastname VARCHAR, "                                                   + " zip INTEGER, "                                                   + " longfield BIGINT, "                                                   + " doublefield DOUBLE, "                                                   + " bigdecimalfield DECIMAL, "                                                   + " datefield DATE, "                                                   + " filler VARCHAR); ";        // adding extra index will slow down inserts a bit        String ddl4 = "CREATE INDEX idx1 ON TEST (lastname);";        // adding this index will slow down  inserts a lot        String ddl5 = "CREATE INDEX idx2 ON TEST (zip);";        // referential integrity checks will slow down inserts a bit        String ddl6 =            "ALTER TABLE test add constraint c1 FOREIGN KEY (zip) REFERENCES zip(zip);";        String filler =            "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ";        try {            System.out.println("Connecting");            sw.zero();            cConnection = null;            sStatement  = null;            cConnection = DriverManager.getConnection(url + filepath, user,                    password);            System.out.println("connected: " + sw.elapsedTime());            sw.zero();            sStatement = cConnection.createStatement();            java.util.Random randomgen = new java.util.Random();            sStatement.execute(ddl1);            sStatement.execute(ddl2);            sStatement.execute(ddl3);            System.out.println("test table with no index");            if (indexLastName) {                sStatement.execute(ddl4);                System.out.println("create index on lastname");            }            if (indexZip) {                sStatement.execute(ddl5);                System.out.println("create index on zip");            }            if (addForeignKey) {                sStatement.execute(ddl6);                System.out.println("add foreign key");            }            int i;            for (i = 0; i <= smallrows; i++) {                sStatement.execute("INSERT INTO zip VALUES(null);");            }            PreparedStatement ps = cConnection.prepareStatement(                "INSERT INTO test (firstname,lastname,zip,longfield,doublefield,bigdecimalfield,datefield,filler) VALUES (?,?,?,?,?,?,?,?)");            ps.setString(1, "Julia");            ps.setString(2, "Clancy");            for (i = 0; i < bigrows; i++) {                ps.setInt(3, nextIntRandom(randomgen, smallrows));                int nextrandom   = nextIntRandom(randomgen, filler.length());                int randomlength = nextIntRandom(randomgen, filler.length());                ps.setLong(4, randomgen.nextLong());                ps.setDouble(5, randomgen.nextDouble());                ps.setBigDecimal(6, null);//                ps.setDouble(6, randomgen.nextDouble());                ps.setDate(7, new java.sql.Date(nextIntRandom(randomgen, 1000)                                                * 24 * 3600 * 1000));                String varfiller = filler.substring(0, randomlength);                ps.setString(8, nextrandom + varfiller);                ps.execute();                if (reportProgress && (i + 1) % 10000 == 0) {

⌨️ 快捷键说明

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