Item Property (String)

MySQL Connector/Net

Gets the value of a column in its native format. [C#] In C#, this property is the indexer for the MySqlDataReader class.

Namespace:  MySql.Data.MySqlClient
Assembly:  MySql.Data (in MySql.Data.dll) Version: 6.2.2.0

Syntax

C#
public override Object this[
	string name
] { get; }
Visual Basic (Declaration)
Public Overrides ReadOnly Default Property Item ( _
	name As String _
) As Object
Visual C++
public:
virtual property Object^ default[String^ name] {
	Object^ get (String^ name) override;
}

Parameters

name
Type: System..::.String

Implements

IDataRecord..::.Item[([(String])])
IDataRecord..::.Item[([(String])])

See Also