Java Code Examples for java.sql.ResultSet#updateNull()
The following examples show how to use
java.sql.ResultSet#updateNull() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UpdateXXXTest.java From gemfirexd-oss with Apache License 2.0 | 6 votes |
/** * Tests calling setNull on all columns * @exception SQLException database access error. Causes test to * fail with an error. */ public void testUpdateNull() throws SQLException { Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE); ResultSet rs = s.executeQuery(SELECT_STMT); rs.next(); for (int i = 1; i <= COLUMNS; i++) { rs.updateNull(i); assertNull("Expected rs.getObject(" + i + ") to be null", rs.getObject(i)); assertTrue("Expected rs.wasNull() to return true", rs.wasNull()); } rs.updateRow(); rs.close(); checkColumnsAreNull(); s.close(); }
Example 2
Source File: UpdateVTIResultSet.java From gemfirexd-oss with Apache License 2.0 | 6 votes |
private void updateVTI(ResultSet target, ExecRow row) throws StandardException { int[] changedColumnIds = constants.changedColumnIds; try { for( int i = 0; i < changedColumnIds.length; i++) { int columnId = changedColumnIds[i]; DataValueDescriptor newValue = row.getColumn( i + 1); if( newValue.isNull()) target.updateNull( columnId); else newValue.setInto( target, columnId); } target.updateRow(); } catch (Throwable t) { throw StandardException.unexpectedUserException(t); } }
Example 3
Source File: UpdateXXXTest.java From gemfirexd-oss with Apache License 2.0 | 6 votes |
/** * Tests calling setNull on all columns * @exception SQLException database access error. Causes test to * fail with an error. */ public void testUpdateNull() throws SQLException { Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE); ResultSet rs = s.executeQuery(SELECT_STMT); rs.next(); for (int i = 1; i <= COLUMNS; i++) { rs.updateNull(i); assertNull("Expected rs.getObject(" + i + ") to be null", rs.getObject(i)); assertTrue("Expected rs.wasNull() to return true", rs.wasNull()); } rs.updateRow(); rs.close(); checkColumnsAreNull(); s.close(); }
Example 4
Source File: UpdateVTIResultSet.java From gemfirexd-oss with Apache License 2.0 | 6 votes |
private void updateVTI(ResultSet target, ExecRow row) throws StandardException { int[] changedColumnIds = constants.changedColumnIds; try { for( int i = 0; i < changedColumnIds.length; i++) { int columnId = changedColumnIds[i]; DataValueDescriptor newValue = row.getColumn( i + 1); if( newValue.isNull()) target.updateNull( columnId); else newValue.setInto( target, columnId); } target.updateRow(); } catch (Throwable t) { throw StandardException.unexpectedUserException(t); } }
Example 5
Source File: UpdateXXXTest.java From spliceengine with GNU Affero General Public License v3.0 | 6 votes |
/** * Tests calling setNull on all columns * @exception SQLException database access error. Causes test to * fail with an error. */ public void testUpdateNull() throws SQLException { Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE); ResultSet rs = s.executeQuery(SELECT_STMT); rs.next(); for (int i = 1; i <= COLUMNS; i++) { rs.updateNull(i); assertNull("Expected rs.getObject(" + i + ") to be null", rs.getObject(i)); assertTrue("Expected rs.wasNull() to return true", rs.wasNull()); } rs.updateRow(); rs.close(); checkColumnsAreNull(); s.close(); }
Example 6
Source File: QueryReader.java From sqlbuilder with Apache License 2.0 | 5 votes |
/** * Calls updateNull on the given ResultSet with the given sql type * for the position of this PlaceHolder. */ public void updateNull(ResultSet rs) throws SQLException { if(isInQuery()) { rs.updateNull(getIndex()); } }
Example 7
Source File: UnsupportedUpdateOperationResultSetTest.java From sharding-jdbc-1.5.1 with Apache License 2.0 | 4 votes |
@Test(expected = SQLFeatureNotSupportedException.class) public void assertUpdateNullForColumnIndex() throws SQLException { for (ResultSet each : resultSets) { each.updateNull(1); } }
Example 8
Source File: UnsupportedUpdateOperationResultSetTest.java From sharding-jdbc-1.5.1 with Apache License 2.0 | 4 votes |
@Test(expected = SQLFeatureNotSupportedException.class) public void assertUpdateNullForColumnLabel() throws SQLException { for (ResultSet each : resultSets) { each.updateNull("label"); } }
Example 9
Source File: SURTest.java From gemfirexd-oss with Apache License 2.0 | 4 votes |
/** * Test that you can correctly run multiple updateNull() + updateRow() * combined with cancelRowUpdates(). */ public void testMultiUpdateRow2() throws SQLException { Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE); s.setCursorName(getNextCursorName()); ResultSet rs = s.executeQuery("select * from t1"); rs.absolute(5); final int oldCol2 = rs.getInt(2); final int oldCol3 = rs.getInt(3); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after cancelRowUpdated", oldCol2, rs.getInt(2)); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertTrue("Expected rs.rowUpdated() to be false before updateRow", !rs.rowUpdated()); rs.updateRow(); assertTrue("Expected rs.rowUpdated() to be true after updateRow", rs.rowUpdated()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.updateNull(3); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after " + "cancelRowUpdated", oldCol3, rs.getInt(3)); assertEquals("Expected the resultset detect the updates of previous " + "updateRow after cancelRowUpdated", 0, rs.getInt(2)); rs.updateNull(3); rs.updateRow(); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); rs.cancelRowUpdates(); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(2)); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(3)); assertTrue("Expected rs.rowUpdated() to be true after " + "updateRow and cancelRowUpdates", rs.rowUpdated()); rs.close(); s.close(); }
Example 10
Source File: UnsupportedUpdateOperationResultSetTest.java From shardingsphere with Apache License 2.0 | 4 votes |
@Test(expected = SQLFeatureNotSupportedException.class) public void assertUpdateNullForColumnIndex() throws SQLException { for (ResultSet each : resultSets) { each.updateNull(1); } }
Example 11
Source File: UnsupportedUpdateOperationResultSetTest.java From shardingsphere with Apache License 2.0 | 4 votes |
@Test(expected = SQLFeatureNotSupportedException.class) public void assertUpdateNullForColumnLabel() throws SQLException { for (ResultSet each : resultSets) { each.updateNull("label"); } }
Example 12
Source File: SURTest.java From gemfirexd-oss with Apache License 2.0 | 4 votes |
/** * Test that you can correctly run multiple updateNull() + updateRow() * combined with cancelRowUpdates(). */ public void testMultiUpdateRow2() throws SQLException { Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE); s.setCursorName(getNextCursorName()); ResultSet rs = s.executeQuery("select * from t1"); rs.absolute(5); final int oldCol2 = rs.getInt(2); final int oldCol3 = rs.getInt(3); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after cancelRowUpdated", oldCol2, rs.getInt(2)); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertTrue("Expected rs.rowUpdated() to be false before updateRow", !rs.rowUpdated()); rs.updateRow(); assertTrue("Expected rs.rowUpdated() to be true after updateRow", rs.rowUpdated()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.updateNull(3); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after " + "cancelRowUpdated", oldCol3, rs.getInt(3)); assertEquals("Expected the resultset detect the updates of previous " + "updateRow after cancelRowUpdated", 0, rs.getInt(2)); rs.updateNull(3); rs.updateRow(); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); rs.cancelRowUpdates(); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(2)); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(3)); assertTrue("Expected rs.rowUpdated() to be true after " + "updateRow and cancelRowUpdates", rs.rowUpdated()); rs.close(); s.close(); }
Example 13
Source File: SURTest.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
/** * Test that you can correctly run multiple updateNull() + updateRow() * combined with cancelRowUpdates(). */ public void testMultiUpdateRow2() throws SQLException { Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE); s.setCursorName(getNextCursorName()); ResultSet rs = s.executeQuery("select * from t1"); rs.absolute(5); final int oldCol2 = rs.getInt(2); final int oldCol3 = rs.getInt(3); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after cancelRowUpdated", oldCol2, rs.getInt(2)); rs.updateNull(2); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(2)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertTrue("Expected rs.rowUpdated() to be false before updateRow", !rs.rowUpdated()); rs.updateRow(); assertTrue("Expected rs.rowUpdated() to be true after updateRow", rs.rowUpdated()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.updateNull(3); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); assertTrue("Expected wasNull to be true after updateNull", rs.wasNull()); assertEquals("Expected the resultset detect the updates of previous " + "updateRow", 0, rs.getInt(2)); rs.cancelRowUpdates(); assertEquals("Expected updateXXX to have no effect after " + "cancelRowUpdated", oldCol3, rs.getInt(3)); assertEquals("Expected the resultset detect the updates of previous " + "updateRow after cancelRowUpdated", 0, rs.getInt(2)); rs.updateNull(3); rs.updateRow(); assertEquals("Expected the resultset to be updated after updateNull", 0, rs.getInt(3)); rs.cancelRowUpdates(); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(2)); assertEquals("Expected the resultset detect the updates of previous" + "updateRow after cancelRowUpdates", 0, rs.getInt(3)); assertTrue("Expected rs.rowUpdated() to be true after " + "updateRow and cancelRowUpdates", rs.rowUpdated()); rs.close(); s.close(); }