MySqlHelper.UpdateDataSet
Method
Updates the given table with data from the given DataSet
Syntax: Visual Basic
Public Shared Sub UpdateDataSet( _ ByVal connectionString As String, _ ByVal commandText As String, _ ByVal ds As DataSet, _ ByVal tablename As String _ )
Syntax: C#
public static void UpdateDataSet( stringconnectionString, stringcommandText, DataSetds, stringtablename );
Parameters
connectionString
: Settings to use for the updatecommandText
: Command text to use for the updateds
: DataSetcontaining the new data to use in the updatetablename
: Tablename in the data set to update
See Also
MySqlHelper Class, MySql.Data.MySqlClient Namespace