Method getBinaryStream(String columnName)
Return type:
java.io.InputStream
Member of:
java.sql.ResultSet
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
assertNotNull(rs.getBinaryStream("column"));
2
assertNull(rs.getBinaryStream("column"));
3
InputStream binaryInput = rs.getBinaryStream(colName);
4
InputStream in = rs.getBinaryStream(mapping.getColumnName());
5
rep = (IDRSRep) (new ObjectInputStream(rs.getBinaryStream(docsrc))).readObject();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.