Get the value of a column in the current row as a Java float.
Definition at line 1171 of file ResultSet.java. Referenced by com::mysql::jdbc::CallableStatement::getFloat(). { if (!this.isBinaryEncoded) { String val = null; val = getString(columnIndex); return getFloatFromString(val, columnIndex); } return getNativeFloat(columnIndex); }
|