MySQL Connector/Net
MySqlDataReaderGetDouble Method (String) |
Gets the value of the specified column as a double-precision floating point number.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9

public double GetDouble( string column )
Public Function GetDouble ( column As String ) As Double
public: double GetDouble( String^ column )
member GetDouble : column : string -> float
Parameters
- column
- Type: SystemString
The column name
Return Value
Type: DoubleThe value of the specified column.

No conversions are performed; therefore, the data retrieved must already be a Double object.
Call IsDBNull to check for null values before calling this method.
