blob: de192c92974c695976a4bece6ba5a96e54ac31cb [file] [log] [blame]
/*
Derby - Class ResultSetCloseTest
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.jdbcapi;
import junit.framework.*;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.TestConfiguration;
import java.sql.*;
/**
* This class is used to test the fix for DERBY-694.
*
* A brief description of DERBY-694 (Got from the description in JIRA)
*
* 1) Autocommit off.
* 2) Have two prepared statements, calling executeQuery() on both
* 3) Gives two result sets. Can fetch data from both with next().
* 4) If one statement gets an exception (say, caused by a division by zero)
* 5) not only this statement's result set is closed, but also the other open
* resultset. This happens with the client driver, whereas in embedded mode,
* the other result set is unaffected by the exception in the first result set
* (as it should be).
*
*/
public class ResultSetCloseTest extends BaseJDBCTestCase {
/**
* Create the tables and the Connection and PreparedStatements that will
* be used in this test.
*/
public void setUp()
throws SQLException {
Connection con = getConnection();
con.setAutoCommit(false);
Statement s = con.createStatement();
s.execute("create table t1 (a int)");
s.execute("insert into t1 values(1)");
s.execute("insert into t1 values(0)");
s.execute("insert into t1 values(2)");
s.execute("insert into t1 values(3)");
s.close();
con.commit();
}
/**
* Test that the occurence of the exception in one of the PreparedStatements
* does not result in the closure of the ResultSet associated with the other
* Prepared Statements.
*
* STEPS :
* 1) Execute the first PreparedStatement. This should not cause any
* SQLException.
* 2) Now execute the second PreparedStatement. This causes
* the expected Divide by zero exception.
* 3) Now access the first resultset again to ensure this is still open.
*
*/
public void testResultSetDoesNotClose() throws SQLException {
PreparedStatement ps1 = prepareStatement("select * from t1");
PreparedStatement ps2 = prepareStatement("select 10/a from t1");
ResultSet rs1 = ps1.executeQuery();
try {
ResultSet rs2 = ps2.executeQuery();
while(rs2.next());
} catch(SQLException sqle) {
//Do Nothing expected exception
}
while(rs1.next());
commit();
rs1.close();
ps1.close();
ps2.close();
}
/**
* Create the test with the given name.
*
* @param name name of the test.
*/
public ResultSetCloseTest(String name) {
super(name);
}
/**
* Create test suite for this test.
* Run in both embedded and client.
*/
public static Test suite() {
return TestConfiguration.defaultSuite(ResultSetCloseTest.class);
}
}