MySqlCommand.BeginExecuteReader Method

MySQL Connector/Net

MySqlCommandBeginExecuteReader Method
Initiates the asynchronous execution of the SQL statement or stored procedure that is described by this MySqlCommand, and retrieves one or more result sets from the server.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public IAsyncResult BeginExecuteReader()
Public Function BeginExecuteReader As IAsyncResult
public:
IAsyncResult^ BeginExecuteReader()
member BeginExecuteReader : unit -> IAsyncResult 

Return Value

Type: IAsyncResult
An IAsyncResult that can be used to poll, wait for results, or both; this value is also needed when invoking EndExecuteReader, which returns a MySqlDataReader instance that can be used to retrieve the returned rows.
See Also