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



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



