MagentoCommandBuilder Class
Automatically generates single-table commands used to reconcile changes made to a
System.Data.DataSet with the Adobe Commerce.
The following example uses
MagentoCommand, along with
MagentoDataAdapter and
MagentoConnection, to select rows from Adobe Commerce. The example is passed an initialized
System.Data.DataSet, a connection string, a query string that is SQL SELECT statement, and a string that is the name of the Adobe Commerce table. The example then creates a
MagentoCommandBuilder.
|
|---|
public DataSet SelectMagentoSrvRows(DataSet myDataSet,string adobe commerceConnection,string mySelectQuery,string myTableName)
{
MagentoConnection myConn = new MagentoConnection(adobe commerceConnection);
MagentoDataAdapter myDataAdapter = new MagentoDataAdapter();
myDataAdapter.SelectCommand = new MagentoCommand(mySelectQuery, myConn);
MagentoCommandBuilder adobe commerceCommandBuilder = new MagentoCommandBuilder(myDataAdapter);
myConn.Open();
DataSet myDataSet = new DataSet();
myDataAdapter.Fill(myDataSet, "Departments");
//code to modify data in dataset here
//Without the MagentoCommandBuilder this line would fail
myDataAdapter.Update(myDataSet, "Departments");
myConn.Close();
return myDataSet;
} |
|
|---|
Public Function SelectMagentoSrvRows(myDataSet As DataSet, adobe commerceConnection As String, mySelectQuery As String, myTableName As String) As DataSet
Dim myConn As New MagentoConnection(adobe commerceConnection)
Dim myDataAdapter As New MagentoDataAdapter()
myDataAdapter.SelectCommand = New MagentoCommand(mySelectQuery, myConn)
Dim adobe commerceCommandBuilder As MagentoCommandBuilder = New MagentoCommandBuilder(myDataAdapter)
myConn.Open()
Dim myDataSet As DataSet = New DataSet
myDataAdapter.Fill(myDataSet, "Departments")
' Code to modify data in DataSet here
' Without the MagentoCommandBuilder this line would fail.
myDataAdapter.Update(myDataSet, "Departments")
myConn.Close()
SelectMagentoSrvRows = myDataSet
End Function |