MySqlCommand.BeginExecuteNonQuery Method

MySQL Connector/Net

MySqlCommandBeginExecuteNonQuery Method
Initiates the asynchronous execution of the SQL statement or stored procedure that is described by this MySqlCommand.

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

Return Value

Type: IAsyncResult
An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndExecuteNonQuery(IAsyncResult), which returns the number of affected rows.
See Also