Sets the designated parameter to the given input stream, which will have the specified number of bytes.
public void setBinaryStream(java.lang.String sCol, java.io.InputStream is, int n)
Parameters
sCol
A string that contains the name of the parameter.
is
An InputStream object.
n
An integer that indicates the length in number of bytes.
Exceptions
Remarks
This setBinaryStream method is specified by the setBinaryStream method in the java.sql.CallableStatement interface.
When the length (n) is set to -1, a stream is allowed, but a specific length is not required. If the InputStream passes a stream of a different length than what is specified, the JDBC driver will stop the update while it tries to preserve the connection and the current transaction.