1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
/*
*
* Derby - Class ScrollResultSetTest
*
* 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 java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.SQLStateConstants;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Tests scrollable result sets
*
*
* Tests:
* - testNextOnLastRowForwardOnly: tests that the result set is closed when all
* rows have been retrieved and next has been called from the last row,
* autocommit = true, the result set is not holdable and type forward
* only. (DERBY-1295)
* - testNextOnLastRowScrollable: tests that the result set is not closed when
* next is called while the result set is positioned in the last row,
* autocommit = true, the result set is not holdable type scrollable
* insensitive. (DERBY-1295)
* - testDerby6737: tests that a LOB can be accessed after using an absolute
* positioning method to move the position to the row on which the result set
* is currently positioned. (DERBY-6737)
*
*/
public class ScrollResultSetTest extends BaseJDBCTestCase {
/** Creates a new instance of ScrollResultSetTest */
public ScrollResultSetTest(String name) {
super(name);
}
public static Test suite() {
// Requires holdability
if (JDBC.vmSupportsJDBC3() || JDBC.vmSupportsJSR169()) {
// Run embedded and client
return TestConfiguration.defaultSuite(ScrollResultSetTest.class);
}
// empty suite, no holdability supported.
return new BaseTestSuite(
"Empty ScrollResultSetTest suite, no support for holdability");
}
/**
* Set up the connection to the database.
*/
public void setUp() throws Exception {
Connection con = getConnection();
con.setAutoCommit(true);
String createTableWithPK = "CREATE TABLE tableWithPK (" +
"c1 int primary key," +
"c2 int)";
String insertData = "INSERT INTO tableWithPK values " +
"(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)";
Statement stmt = con.createStatement();
stmt.execute(createTableWithPK);
stmt.execute(insertData);
stmt.close();
}
/**
* Drop the table
*/
public void tearDown() throws Exception {
println("TearDown");
Statement s = getConnection().createStatement();
try {
s.executeUpdate("DROP TABLE tableWithPK");
} catch (SQLException e) {
printStackTrace(e);
}
s.close();
super.tearDown();
}
/**
* Test that moving to next row after positioned at the last row on a
* forward only result set will close the result set
*/
public void testNextOnLastRowForwardOnly() throws SQLException{
Connection con = getConnection();
con.setAutoCommit(true);
con.setHoldability(ResultSet.CLOSE_CURSORS_AT_COMMIT);
Statement roStmt = con.createStatement(
ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_READ_ONLY);
ResultSet rs = roStmt.executeQuery("SELECT c1 FROM tableWithPK");
// call next until positioned after last
while (rs.next());
try {
// forward only result set should be closed now, an exception will
// be thrown
rs.next();
assertTrue("Excepted exception to be thrown - result set is closed",
false);
} catch (SQLException se) {
assertSQLState("Unexpected SQL State",
SQLStateConstants.RESULT_SET_IS_CLOSED, se);
}
}
/**
* Test that moving to next row after positioned at the last row on a
* scrollable result set will not close the result set
*/
public void testNextOnLastRowScrollable() throws SQLException{
Connection con = getConnection();
con.setAutoCommit(true);
con.setHoldability(ResultSet.CLOSE_CURSORS_AT_COMMIT);
Statement roStmt = con.createStatement(
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
ResultSet rs = roStmt.executeQuery("SELECT c1 FROM tableWithPK");
// move to last position and then call next
rs.last();
rs.next();
// scrollable result set should still be open and not throw no
// exception will be thrown
assertFalse("Calling next while positioned after last returns " +
"false", rs.next());
assertTrue("Moving to absolute(2) returns true", rs.absolute(2));
rs.close();
}
/**
* <p>
* Test that it is possible to access LOBs after moving the position of
* a scrollable result set from one row to the same row. Before DERBY-6737
* the following sequence of calls
* </p>
*
* <pre>
* rs.last();
* rs.first();
* rs.getClob(1).length();
* </pre>
*
* <p>
* would fail with 'invalid locator' on the client, if the result set
* contained only one row.
* </p>
*/
public void testDerby6737() throws SQLException {
Statement s = createStatement();
s.execute("create table d6737(c clob)");
s.execute("insert into d6737 values 'abc'");
PreparedStatement ps = prepareStatement("select * from d6737",
ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
ResultSet rs = ps.executeQuery();
assertTrue(rs.last());
assertTrue(rs.first());
assertEquals(3, rs.getClob(1).length()); // used to fail on client
rs.close();
rs = ps.executeQuery();
assertTrue(rs.next());
assertTrue(rs.first());
assertEquals(3, rs.getClob(1).length()); // used to fail on client
rs.close();
rs = ps.executeQuery();
assertTrue(rs.first());
assertTrue(rs.last());
assertEquals(3, rs.getClob(1).length()); // used to fail on client
rs.close();
rs = ps.executeQuery();
assertTrue(rs.last());
assertTrue(rs.absolute(1));
assertEquals(3, rs.getClob(1).length()); // used to fail on client
rs.close();
// This case, where the CLOB had been accessed, but not explicitly
// freed before the result set was repositioned, passed even before
// the fix.
rs = ps.executeQuery();
assertTrue(rs.last());
assertEquals(3, rs.getClob(1).length());
assertTrue(rs.first());
assertEquals(3, rs.getClob(1).length());
rs.close();
// But it failed if the CLOB was explicitly freed before repositioning.
rs = ps.executeQuery();
assertTrue(rs.last());
rs.getClob(1).free();
assertTrue(rs.first());
assertEquals(3, rs.getClob(1).length()); // used to fail on client
rs.close();
}
}
|