public abstract void updateBinaryStream (String columnLabel, InputStream x) throws SQLException

Updates the designated column with a binary stream value. The data will be read from the stream as needed until end-of-stream is reached.

The updater methods are used to update column values in the current row or the insert row. The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.

Note: Consult your JDBC driver documentation to determine if it might be more efficient to use a version of updateBinaryStream which takes a length parameter.

Parameters:
columnLabel    the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column
x    the new column value

Exceptions:
SQLException    if the columnLabel is not valid; if a database access error occurs; the result set concurrency is CONCUR_READ_ONLY or this method is called on a closed result set
SQLFeatureNotSupportedException    if the JDBC driver does not support this method

Since:  1.6