Method getBytes(int columnIndex)
Return type: byte
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.getBytes(1));
2
assertNull(rs.getBytes(1));
3
rs.getBytes(1);
4
return new ByteArrayInputStream(rs.getBytes(1));
5
if(in == null) in = new ByteArrayInputStream(rs.getBytes(1));
6
canvas.setImage(canvas.getToolkit().createImage(rs.getBytes(1)));
7
headers = rsRetrieveMessageStream.getBytes(1);
8
robj = rs.getBytes(1);
9
value = rs.getBytes(mapping.getColumnIndex().intValue());
10
byte b[] = rs.getBytes(i);
11
byte [] bytes = results.getBytes(i);
12
row.add(new ByteArrayBlob(set.getBytes(i)));
13
result = rs.getBytes(columnId);
14
o = s.getBytes(i);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.