296297298299300301302303304305306
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateNClob(2, new StringReader("readstr")); fail("should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
303304305306307308309310311312313
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateNClob("not", new StringReader("readstr")); fail("should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
310311312313314315316317318319320
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateNClob(100, new StringReader("readstr"), 1000L); fail("should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }
317318319320321322323324325326327
} catch (SQLFeatureNotSupportedException e) { // expected } try { jrs.updateNClob("not", new StringReader("readstr"), 1000L); fail("should throw SQLFeatureNotSupportedException"); } catch (SQLFeatureNotSupportedException e) { // expected }