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
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/test/jdbc3/ResultSetTest.java,v 1.4 2008/01/08 06:56:31 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.test.jdbc3;
import java.sql.*;
import junit.framework.TestCase;
import org.postgresql.test.TestUtil;
public class ResultSetTest extends TestCase {
private Connection _conn;
public ResultSetTest(String name) {
super(name);
}
protected void setUp() throws Exception {
_conn = TestUtil.openDB();
Statement stmt = _conn.createStatement();
stmt.execute("CREATE TEMP TABLE hold(a int)");
stmt.execute("INSERT INTO hold VALUES (1)");
stmt.execute("INSERT INTO hold VALUES (2)");
stmt.close();
}
protected void tearDown() throws SQLException {
Statement stmt = _conn.createStatement();
stmt.execute("DROP TABLE hold");
stmt.close();
TestUtil.closeDB(_conn);
}
public void testHoldableResultSet() throws SQLException {
Statement stmt = _conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY, ResultSet.HOLD_CURSORS_OVER_COMMIT);
_conn.setAutoCommit(false);
stmt.setFetchSize(1);
ResultSet rs = stmt.executeQuery("SELECT a FROM hold ORDER BY a");
assertTrue(rs.next());
assertEquals(1, rs.getInt(1));
_conn.commit();
assertTrue(rs.next());
assertEquals(2, rs.getInt(1));
assertTrue(!rs.next());
rs.close();
stmt.close();
}
}
|