Method getBlob(int i)
Return type:
java.sql.Blob
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.getBlob(1));
2
assertNull(rs.getBlob(1));
3
Blob blob = rs.getBlob(1);
4
BLOB dbBlob = (BLOB) rs.getBlob(1);
5
BLOB dbBlob = (BLOB) rs.getBlob(1);
6
Blob blob = rs.getBlob(1);
7
Blob blob = rs.getBlob(1);
8
Blob blob = rs.getBlob(columnIndex);
9
dbBlob = set.getBlob(column);
10
row.add(set.getBlob(i));
11
java.sql.Blob aBlob = rs.getBlob(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.