184185186187188189190191192193194
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBlob(100, null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
191192193194195196197198199200201
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBlob("not", null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
198199200201202203204205206207208
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBlob(100, new StringBufferInputStream("test")); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
205206207208209210211212213214215
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBlob("not", new StringBufferInputStream("test")); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }