212213214215216217218219220221222
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateCharacterStream(100, null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
219220221222223224225226227228229
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateCharacterStream("not", null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
226227228229230231232233234235236
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateCharacterStream(100, null); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
233234235236237238239240241242243
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateCharacterStream("not", null); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }