updateRS.next();
println( "Testing ResultSet.updateObject() on illegal types." );
for ( int i = 0; i < ILLEGAL_JDBC_TYPES.length; i++ )
{
try {
updateRS.updateObject( 2, _columnDescs[ 0 ].values[ 1 ], ILLEGAL_JDBC_TYPES[ i ] );
fail( "updateObject() should have failed." );
}
catch (SQLException se) { assertUnimplemented( se ); }
try {
updateRS.updateObject( 2, _columnDescs[ 0 ].values[ 1 ], ILLEGAL_JDBC_TYPES[ i ], 0 );