Method getBinaryStream(int columnIndex)
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(1));
2
InputStream stream = rs.getBinaryStream(1);
3
assertNull(rs.getBinaryStream(1));
4
InputStream inputStream = rs.getBinaryStream(1);
5
rs.getBinaryStream(1);
6
this.resource = set.getBinaryStream(1);
7
InputStream in = rs.getBinaryStream(mapping.getColumnIndex().intValue());
8
inp=rs.getBinaryStream(idx);
9
InputStream is = rs.getBinaryStream(REVISION_CONTENT);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.