Method getBigDecimal(int columnIndex)
Return type:
java.math.BigDecimal
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.getBigDecimal(1));
2
assertNull(rs.getBigDecimal(1));
3
BigDecimal mr = rs.getBigDecimal(3);
4
pi.addLog (rs.getInt(1), rs.getInt(2), rs.getTimestamp(3), rs.getBigDecimal(4), rs.getString(5));
5
return rs.getBigDecimal(mapping.getColumnIndex().intValue());
6
if (p_rs.getBigDecimal(p_columnIndex) != null) {
7
if (p_rs.getBigDecimal(p_columnIndex) != null) {
8
row.add(set.getBigDecimal(i));
9
result = rs.getBigDecimal(columnId);
10
BigDecimal num = rs.getBigDecimal(i+1+offset);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.