Method getFloat(String columnName)
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("column"), 0.0);
2 assertEquals((float) 0, rs.getFloat("column"), 0.0);
3 return new Float(rs.getFloat(mapping.getColumnName()));
4 return new Float(p_rs.getFloat(p_columnName));
5 return (Float) handleNullReturn(new Float(i_resultSet.getFloat(column)));
6 lstmt.setFloat(iPosn,rs.getFloat(lsName));
7 a.price = rs.getFloat(colPrice);
8 value = new Float(set.getFloat(dbcol));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.