src/main/java/org/mariadb/jdbc/BasePrepareStatement.java [1205:1213]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setAsciiStream(final int parameterIndex, final InputStream stream)
      throws SQLException {
    if (stream == null) {
      setNull(parameterIndex, ColumnType.BLOB);
      return;
    }
    setParameter(parameterIndex, new StreamParameter(stream, noBackslashEscapes));
    hasLongData = true;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/mariadb/jdbc/BasePrepareStatement.java [1288:1296]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setBinaryStream(final int parameterIndex, final InputStream stream)
      throws SQLException {
    if (stream == null) {
      setNull(parameterIndex, ColumnType.BLOB);
      return;
    }
    setParameter(parameterIndex, new StreamParameter(stream, noBackslashEscapes));
    hasLongData = true;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



