EndExecuteReader Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Finishes asynchronous execution of a SQL statement, returning the requested MySqlDataReader.

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

Syntax

C#
public MySqlDataReader EndExecuteReader(
	IAsyncResult result
)
Visual Basic
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