EndExecuteReader Method

MySQL Connector/Net

Finishes asynchronous execution of a SQL statement, returning the requested MySqlDataReader.

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

Syntax

C#
public MySqlDataReader EndExecuteReader(
	IAsyncResult result
)
Visual Basic (Declaration)
Public Function EndExecuteReader ( _
	result As IAsyncResult _
) As MySqlDataReader
Visual C++
public:
MySqlDataReader^ EndExecuteReader(
	IAsyncResult^ result
)

Parameters

result
Type: System..::.IAsyncResult
The IAsyncResult returned by the call to BeginExecuteReader()()().

Return Value

A MySqlDataReader object that can be used to retrieve the requested rows.

See Also