∟Closing InputStream Too Early on setBinaryStream()
This section describes an error condition where executeUpdate() gives an exception if the InputStream is closed too early.
The program in the previous tutorial worked nicely. But if you make a mistake by placing the bodyIn.close() statement before ps.executeUpdate(),
you will get an IOException when ps.executeUpdate() is called. The reason is simple, reading of binary data from the InputStream is done at the time
of executeUpdate() call. Here is a test program:
/**
* SqlServerBlobSetBinaryStreamError.java
* Copyright (c) 2007 by Dr. Herong Yang. All rights reserved.
*/
import java.io.*;
import java.sql.*;
public class SqlServerBlobSetBinaryStreamError {
public static void main(String [] args) {
Connection con = null;
try {
com.microsoft.sqlserver.jdbc.SQLServerDataSource ds
= new com.microsoft.sqlserver.jdbc.SQLServerDataSource();
ds.setServerName("localhost");
ds.setPortNumber(1269);
ds.setDatabaseName("AdventureWorksLT");
ds.setUser("Herong");
ds.setPassword("TopSecret");
con = ds.getConnection();
// Deleting the record for re-testing
String subject = "Test of setBinaryStream() method error";
Statement sta = con.createStatement();
sta.executeUpdate("DELETE FROM Image WHERE Subject = '"
+subject+"'");
// Inserting CLOB value with PreparedStatement.setBinaryStream()
PreparedStatement ps = con.prepareStatement(
"INSERT INTO Image (Subject, Body) VALUES (?,?)");
ps.setString(1, subject);
InputStream bodyIn =
new FileInputStream("SqlServerBlobSetBinaryStream.class");
File fileIn = new File("SqlServerBlobSetBinaryStream.class");
ps.setBinaryStream(2, bodyIn, (int) fileIn.length());
// Error - Closing the InputStream too early.
bodyIn.close();
int count = ps.executeUpdate();
ps.close();
// Retrieving BLOB value with getBytes()
sta = con.createStatement();
ResultSet res = sta.executeQuery("SELECT * FROM Image"
+" WHERE Subject = '"+subject+"'");
res.next();
System.out.println("The inserted record: ");
System.out.println(" Subject = "+res.getString("Subject"));
System.out.println(" Body = "
+new String(res.getBytes("Body"),0,32));
res.close();
sta.close();
con.close();
} catch (Exception e) {
System.err.println("Exception: "+e.getMessage());
e.printStackTrace();
}
}
}
The IOException is:
C:\>java -cp .;\local\lib\sqljdbc.jar
SqlServerBlobSetBinaryStreamError
Exception: java.io.IOException: Read error
com.microsoft.sqlserver.jdbc.SQLServerException:
java.io.IOException: Read error
at com.microsoft.sqlserver.jdbc.SQLServerException
.makeFromDriverError(...)
at com.microsoft.sqlserver.jdbc.IOBuffer
.bufferAppendRPCInputStream(...)
at com.microsoft.sqlserver.jdbc.DTV$SendByRPCOp.execute(...)
at com.microsoft.sqlserver.jdbc.DTV.executeOp(Unknown Source)
at com.microsoft.sqlserver.jdbc.DTV.sendByRPC(Unknown Source)
at com.microsoft.sqlserver.jdbc.Parameter.sendByRPC(...)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement
.sendParamsByRPC(...)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement
.doPrepExec(...)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement
.executeUpdate(...)
at SqlServerBlobSetBinaryStreamError.main(SqlServerBlob...java:40)