setBinaryStream(int parameterIndex, InputStream x)

Syntax:

void setBinaryStream(int parameterIndex,
                     InputStream x)
                     throws SQLException

Description:

Sets the designated parameter to the given input stream. When a very large binary value is input to a LONGVARBINARY parameter, it may be more practical to send it via a java.io.InputStream object. The data will be read from the stream as needed until end-of-file is reached.

Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface.

Parameters:

parameterIndex

the first parameter is 1, the second is 2, ...

x

the java input stream which contains the binary parameter value

Throws:

SQLException - if a database access error occurs, parameterIndex is less than 1 or greater than the number of parameters, or the prepared statement has been closed

Reference:

For more information, reference JDBC documentation for: PreparedStatement.setBinaryStream(int, InputStream)