コード例 #1
0
 public void setNCharacterStream(String parameterName, Reader reader) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setNCharacterStream(parameterName, reader);
   } catch (SQLException e) {
     handleException(e);
   }
 }
コード例 #2
0
  @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;
    }
  }
コード例 #3
0
 public void setNCharacterStream(String parameterName, Reader value, long length)
     throws SQLException {
   passThru.setNCharacterStream(parameterName, value, length);
 }