MySQL Connector/Net
MySqlDataReaderGetString Method (String) |
Gets the value of the specified column as a String object.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9

public string GetString( string column )
Public Function GetString ( column As String ) As String
public: String^ GetString( String^ column )
member GetString : column : string -> string
Parameters
- column
- Type: SystemString
The column name.
Return Value
Type: StringThe value of the specified column.

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