📄 statementstest.java
字号:
/* 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 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 java.sql.CallableStatement;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Properties;import testsuite.BaseTestCase;import com.mysql.jdbc.NotImplemented;import com.mysql.jdbc.SQLError;/** * DOCUMENT ME! * * @author Mark Matthews * @version $Id: StatementsTest.java,v 1.14.4.29 2005/02/16 21:44:31 mmatthews 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(); this.stmt.executeUpdate("DROP TABLE IF EXISTS statement_test"); this.stmt.executeUpdate("DROP TABLE IF EXISTS statement_batch_test"); this.stmt.executeUpdate( "CREATE TABLE statement_test (id int not null primary key auto_increment, strdata1 varchar(255) not null, strdata2 varchar(255))"); this.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) { this.stmt.executeUpdate("DROP TABLE IF EXISTS statement_col_test_" + i); 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 = 16; for (int k = 0; k < numChars; k++) { insertBuf.append("A"); } insertBuf.append("'"); } stmtBuf.append(")"); insertBuf.append(")"); this.stmt.executeUpdate(stmtBuf.toString()); this.stmt.executeUpdate(insertBuf.toString()); } // explicitly set the catalog to exercise code in execute(), executeQuery() and // executeUpdate() // FIXME: Only works on Windows! //this.conn.setCatalog(this.conn.getCatalog().toUpperCase()); } /** * DOCUMENT ME! * * @throws Exception DOCUMENT ME! */ public void tearDown() throws Exception { this.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); this.stmt.executeUpdate(stmtBuf.toString()); } try { this.stmt.executeUpdate("DROP TABLE statement_batch_test"); } 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", this.stmt.getConnection() == this.conn); // Set max rows, to exercise code in execute(), executeQuery() and executeUpdate() Statement accessorStmt = null; try { accessorStmt = this.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"); } 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"); } catch (SQLException sqlEx) { ; } try { accessorStmt.setMaxRows(50000000 + 10); fail("Should not be able to set max rows > 50000000"); } catch (SQLException sqlEx) { ; } try { accessorStmt.setMaxRows(Integer.MIN_VALUE); fail("Should not be able to set max rows < 0"); } catch (SQLException sqlEx) { ; } int fetchSize = this.stmt.getFetchSize(); try { accessorStmt.setMaxRows(4); accessorStmt.setFetchSize(Integer.MAX_VALUE); fail("Should not be able to set FetchSize > max rows"); } catch (SQLException sqlEx) { ; } try { accessorStmt.setFetchSize(-2); fail("Should not be able to set FetchSize < 0"); } catch (SQLException sqlEx) { ; } assertTrue("Fetch size before invalid setFetchSize() calls should match fetch size now", fetchSize == this.stmt.getFetchSize()); } finally { if (accessorStmt != null) { try { accessorStmt.close(); } catch (SQLException sqlEx) { ; } accessorStmt = null; } } } /** * DOCUMENT ME! * * @throws SQLException DOCUMENT ME! */ public void testAutoIncrement() throws SQLException { try { this.stmt = this.conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY); this.stmt.setFetchSize(Integer.MIN_VALUE); this.stmt.executeUpdate( "INSERT INTO statement_test (strdata1) values ('blah')"); int autoIncKeyFromApi = -1; this.rs = this.stmt.getGeneratedKeys(); if (this.rs.next()) { autoIncKeyFromApi = this.rs.getInt(1); } else { fail( "Failed to retrieve AUTO_INCREMENT using Statement.getGeneratedKeys()"); } this.rs.close(); int autoIncKeyFromFunc = -1; this.rs = this.stmt.executeQuery("SELECT LAST_INSERT_ID()"); if (this.rs.next()) { autoIncKeyFromFunc = this.rs.getInt(1); } else { fail("Failed to retrieve AUTO_INCREMENT using LAST_INSERT_ID()"); } if ((autoIncKeyFromApi != -1) && (autoIncKeyFromFunc != -1)) { assertTrue("Key retrieved from API (" + autoIncKeyFromApi + ") does not match key retrieved from LAST_INSERT_ID() " + autoIncKeyFromFunc + ") function", autoIncKeyFromApi == autoIncKeyFromFunc); } else { fail("AutoIncrement keys were '0'"); } } finally { if (this.rs != null) { try { this.rs.close(); } catch (Exception ex) { /* ignore */ ; } } this.rs = null; } } /** * Tests stored procedure functionality * * @throws Exception if an error occurs. */ public void testCallableStatement() throws Exception { if (versionMeetsMinimum(5, 0)) { CallableStatement cStmt = null; String stringVal = "abcdefg"; int intVal = 42; try { try { this.stmt.executeUpdate("DROP PROCEDURE testCallStmt"); } catch (SQLException sqlEx) { if (sqlEx.getMessage().indexOf("does not exist") == -1) { throw sqlEx; } } this.stmt.executeUpdate("DROP TABLE IF EXISTS callStmtTbl"); this.stmt.executeUpdate( "CREATE TABLE callStmtTbl (x CHAR(16), y INT)");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -