Method getClob(int i)
Return type:
java.sql.Clob
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.getClob(1));
2
assertNull(rs.getClob(1));
3
Clob clob = rs.getClob(1);
4
Clob clob = rs.getClob(columnIndex);
5
Clob clob = rs.getClob(columnIndex);
6
Clob clob = rs.getClob(mapping.getColumnIndex().intValue());
7
dbClob = set.getClob(column);
8
row.add(set.getClob(i));
9
java.sql.Clob aClob = rs.getClob(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.