Method getFloat(int columnIndex)
Return type: float
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
assertEquals(f, rs.getFloat(1), 0.0);
2
assertEquals((float) 0, rs.getFloat(1), 0.0);
3
return new Float(p_rs.getFloat(p_columnIndex));
4
return new Float(rs.getFloat(mapping.getColumnIndex().intValue()));
5
r.getFloat(1);
6
return (Float) handleNullReturn(new Float(i_resultSet.getFloat(column)));
7
r.getFloat(1);
8
floatVal = rs.getFloat(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.