156157158159160161162163164165166
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBinaryStream(100, null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
163164165166167168169170171172173
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBinaryStream("not exist", null, 100L); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
170171172173174175176177178179180
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBinaryStream(100, null); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
177178179180181182183184185186187
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateBinaryStream("not", null); fail("Should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }