public void setNClob(String parameterName, Reader reader, long length) throws SQLException { checkOpen(); try { ((CallableStatement) _stmt).setNClob(parameterName, reader, length); } catch (SQLException e) { handleException(e); } }
public void setNClob(String parameterName, NClob value) throws SQLException { checkOpen(); try { ((CallableStatement) _stmt).setNClob(parameterName, value); } catch (SQLException e) { handleException(e); } }
@Override public void setNClob(String parameterName, Reader reader) throws SQLException { try { _cstmt.setNClob(parameterName, reader); } catch (SQLException e) { onSqlException(e); throw e; } catch (RuntimeException e) { onRuntimeException(e); throw e; } }
public void setNClob(String parameterName, Reader reader, long length) throws SQLException { passThru.setNClob(parameterName, reader, length); }
public void setNClob(String parameterName, NClob value) throws SQLException { passThru.setNClob(parameterName, value); }