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

📄 statementstest.java

📁 MySql Java Connector
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* Copyright (C) 2002-2004 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation.  There are special exceptions to the terms and conditions of the GPL  as it is applied to this software. View the full text of the  exception exception in file EXCEPTIONS-CONNECTOR-J in the directory of this  software distribution. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package testsuite.simple;import com.mysql.jdbc.NotImplemented;import com.mysql.jdbc.SQLError;import testsuite.BaseTestCase;import java.sql.SQLException;import java.sql.Statement;/** * DOCUMENT ME! * * @author Mark Matthews * @version $Id: StatementsTest.java,v 1.14.2.6 2004/08/09 22:15:12 mmatthew Exp $ */public class StatementsTest extends BaseTestCase {    private static final int MAX_COLUMNS_TO_TEST = 40;    private static final int STEP = 8;    private static final int MAX_COLUMN_LENGTH = 255;    private static final int MIN_COLUMN_LENGTH = 10;    /**     * Creates a new StatementsTest object.     *     * @param name DOCUMENT ME!     */    public StatementsTest(String name) {        super(name);    }    /**     * Runs all test cases in this test suite     *     * @param args     */    public static void main(String[] args) {        junit.textui.TestRunner.run(StatementsTest.class);    }    /**     * DOCUMENT ME!     *     * @throws Exception DOCUMENT ME!     */    public void setUp() throws Exception {        super.setUp();        try {            stmt.executeUpdate("DROP TABLE statement_test");        } /* ignore */catch (SQLException sqlEx) {            ;        }        try {            stmt.executeUpdate("DROP TABLE statement_batch_test");        } /* ignore */catch (SQLException sqlEx) {            ;        }        stmt.executeUpdate(            "CREATE TABLE statement_test (id int not null primary key auto_increment, strdata1 varchar(255) not null, strdata2 varchar(255))");        stmt.executeUpdate("CREATE TABLE statement_batch_test "            + "(id int not null primary key auto_increment, "            + "strdata1 varchar(255) not null, strdata2 varchar(255), "            + "UNIQUE INDEX (strdata1))");        for (int i = 6; i < MAX_COLUMNS_TO_TEST; i += STEP) {            StringBuffer insertBuf = new StringBuffer(                    "INSERT INTO statement_col_test_");            StringBuffer stmtBuf = new StringBuffer(                    "CREATE TABLE IF NOT EXISTS statement_col_test_");            stmtBuf.append(i);            insertBuf.append(i);            stmtBuf.append(" (");            insertBuf.append(" VALUES (");            boolean firstTime = true;            for (int j = 0; j < i; j++) {                if (!firstTime) {                    stmtBuf.append(",");                    insertBuf.append(",");                } else {                    firstTime = false;                }                stmtBuf.append("col_");                stmtBuf.append(j);                stmtBuf.append(" VARCHAR(");                stmtBuf.append(MAX_COLUMN_LENGTH);                stmtBuf.append(")");                insertBuf.append("'");                int numChars = (int) (Math.random() * (MAX_COLUMN_LENGTH                    - MIN_COLUMN_LENGTH)) + MIN_COLUMN_LENGTH;                for (int k = 0; k < numChars; k++) {                    insertBuf.append("A");                }                insertBuf.append("'");            }            stmtBuf.append(")");            insertBuf.append(")");            stmt.executeUpdate(stmtBuf.toString());            stmt.executeUpdate(insertBuf.toString());        }        // explicitly set the catalog to exercise code in execute(), executeQuery() and        // executeUpdate()        // FIXME: Only works on Windows!        //conn.setCatalog(conn.getCatalog().toUpperCase());    }    /**     * DOCUMENT ME!     *     * @throws Exception DOCUMENT ME!     */    public void tearDown() throws Exception {        stmt.executeUpdate("DROP TABLE statement_test");        for (int i = 0; i < MAX_COLUMNS_TO_TEST; i += STEP) {            StringBuffer stmtBuf = new StringBuffer(                    "DROP TABLE IF EXISTS statement_col_test_");            stmtBuf.append(i);            stmt.executeUpdate(stmtBuf.toString());        }        try {            stmt.executeUpdate("DROP TABLE statement_batch_test");        } /* ignore */catch (SQLException sqlEx) {            ;        }        super.tearDown();    }    /**     * DOCUMENT ME!     *     * @throws SQLException DOCUMENT ME!     */    public void testAccessorsAndMutators() throws SQLException {        assertTrue("Connection can not be null, and must be same connection",            stmt.getConnection() == conn);        // Set max rows, to exercise code in execute(), executeQuery() and executeUpdate()        Statement accessorStmt = null;        try {            accessorStmt = conn.createStatement();            accessorStmt.setMaxRows(1);            accessorStmt.setMaxRows(0); // FIXME, test that this actually affects rows returned            accessorStmt.setMaxFieldSize(255);            assertTrue("Max field size should match what was set",                accessorStmt.getMaxFieldSize() == 255);            try {                accessorStmt.setMaxFieldSize(Integer.MAX_VALUE);                fail(                    "Should not be able to set max field size > max_packet_size");            } /* ignore */catch (SQLException sqlEx) {                ;            }            accessorStmt.setCursorName("undef");            accessorStmt.setEscapeProcessing(true);            accessorStmt.setFetchDirection(java.sql.ResultSet.FETCH_FORWARD);            int fetchDirection = accessorStmt.getFetchDirection();            assertTrue("Set fetch direction != get fetch direction",                fetchDirection == java.sql.ResultSet.FETCH_FORWARD);            try {                accessorStmt.setFetchDirection(Integer.MAX_VALUE);                fail(                    "Should not be able to set fetch direction to invalid value");            } /* ignore */catch (SQLException sqlEx) {                ;            }            try {                accessorStmt.setMaxRows(50000000 + 10);                fail("Should not be able to set max rows > 50000000");            } /* ignore */catch (SQLException sqlEx) {                ;            }            try {                accessorStmt.setMaxRows(Integer.MIN_VALUE);                fail("Should not be able to set max rows < 0");            } /* ignore */catch (SQLException sqlEx) {                ;            }            int fetchSize = stmt.getFetchSize();            try {                accessorStmt.setMaxRows(4);                accessorStmt.setFetchSize(Integer.MAX_VALUE);                fail("Should not be able to set FetchSize > max rows");            } /* ignore */catch (SQLException sqlEx) {                ;            }            try {                accessorStmt.setFetchSize(-2);                fail("Should not be able to set FetchSize < 0");            } /* ignore */catch (SQLException sqlEx) {                ;            }            assertTrue("Fetch size before invalid setFetchSize() calls should match fetch size now",                fetchSize == stmt.getFetchSize());        } finally {            if (accessorStmt != null) {                try {                    accessorStmt.close();                } /* ignore */catch (SQLException sqlEx) {                    ;                }                accessorStmt = null;            }        }    }    /**     * DOCUMENT ME!     *     * @throws SQLException DOCUMENT ME!     */    public void testAutoIncrement() throws SQLException {        try {            stmt = conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY,                    java.sql.ResultSet.CONCUR_READ_ONLY);            stmt.setFetchSize(Integer.MIN_VALUE);

⌨️ 快捷键说明

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