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