MySQL Connector/Net
MySqlHelperUpdateDataSetAsync Method (String, String, DataSet, String) |
Async version of UpdateDataset
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9

public static Task UpdateDataSetAsync( string connectionString, string commandText, DataSet ds, string tablename )
Public Shared Function UpdateDataSetAsync ( connectionString As String, commandText As String, ds As DataSet, tablename As String ) As Task
public: static Task^ UpdateDataSetAsync( String^ connectionString, String^ commandText, DataSet^ ds, String^ tablename )
static member UpdateDataSetAsync : connectionString : string * commandText : string * ds : DataSet * tablename : string -> Task
Parameters
- connectionString
- Type: SystemString
Settings to use for the update - commandText
- Type: SystemString
Command text to use for the update - ds
- Type: System.DataDataSet
DataSet containing the new data to use in the update - tablename
- Type: SystemString
Tablename in the dataset to update
Return Value
Type: Task