MySQL Connector/Net |
MySqlDataReader..::.GetFloat Method (String) |
MySqlDataReader Class See Also Send Feedback |
Gets the value of the specified column as a single-precision floating point number.
Namespace:
MySql.Data.MySqlClient
Assembly:
MySql.Data (in MySql.Data.dll) Version: 6.2.2.0
Syntax
C# |
---|
public float GetFloat( string column ) |
Visual Basic (Declaration) |
---|
Public Function GetFloat ( _ column As String _ ) As Single |
Visual C++ |
---|
public: float GetFloat( String^ column ) |
Parameters
- column
- Type: System..::.String
The column name
Return Value
The value of the specified column.Remarks
No conversions are performed; therefore, the data retrieved must already be a Float object.
Call IsDBNull to check for null values before calling this method.