将特定数据集的表数据列更新为SQL数据库

时间:2011-10-15 09:48:52

标签: c# asp.net vb.net

我有一个gridview加载了来自我的数据库和gridview交换函数的数据,在使用列调用“优先级”的行之间交换数据之后,我想将这些更改保存回我的数据库。

仅更改“优先级”列值,如何仅将我的数据集表的列更新为SQL数据库?请指教,谢谢!

代码:

Protected Sub Gridviewselectbus_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs)

        If e.CommandName = "Up" Then

            Dim index As Int16 = Convert.ToInt16(e.CommandArgument)
            If index = 0 Or index = 1 Then
                Exit Sub
            End If

            Dim objCampaignManagementTable As New CampaignManagementBLL
            Dim ds As DataSet = objCampaignManagementTable.SelectCampaignManagementTableListing()

            Dim dtr As DataRow = ds.Tables(0).Rows(index - 1)

            Dim dtrSwap As DataRow = ds.Tables(0).Rows(index - 2)
            Dim dc As DataColumn = ds.Tables(0).Columns(6)

            'Dim value As Int16 = Convert.ToInt16(dt.Rows(index)("Priority"))
            Dim value As Int16 = CType((dtr)(dc), Short)
            Dim temp1 As Int16 = value

            'Increases the selected row's priority
            dtr(dc) = value - 1

            'Decreases the priority of the row that is on top of the selected row by assigning 
            'the original selected row value to it.
            dtrSwap(dc) = value

            ds.Tables(0).DefaultView.Sort = "Priority"
            ds.Tables(0).AcceptChanges()
            dtNew = ds.Tables(0).Copy()
            uigvList.DataSource = ds.Tables(0)
            uigvList.DataBind()
            ds.Tables(0).AcceptChanges()

            For i As Integer = 0 To uigvList.Rows.Count - 1
                dtNew.Rows(i)("Code") = uigvList.Rows(i).Cells(1).Text
                dtNew.Rows(i)("Name") = uigvList.Rows(i).Cells(2).Text
                dtNew.Rows(i)("Type") = uigvList.Rows(i).Cells(3).Text
                dtNew.Rows(i)("ActiveDateFrom") = uigvList.Rows(i).Cells(4).Text
                dtNew.Rows(i)("ActiveDateTo") = uigvList.Rows(i).Cells(5).Text
                dtNew.Rows(i)("Priority") = uigvList.Rows(i).Cells(6).Text
            Next

          ' Update database
End if

  If e.CommandName = "down" Then

' Down code here

End Sub

1 个答案:

答案 0 :(得分:1)

看看这段代码,这只更新了特定列,然后它也更新了sql server数据库..

我希望它会帮助你......

注意:catDA表示Dataadapter ....这只是示例...如何更新.....

catDA.UpdateCommand = new OdbcCommand("UPDATE Categories SET CategoryName = ? " +
                                      "WHERE CategoryID = ?" , nwindConn);

catDA.UpdateCommand.Parameters.Add("@CategoryName", OdbcType.VarChar, 15, "CategoryName");

OdbcParameter workParm = catDA.UpdateCommand.Parameters.Add("@CategoryID", OdbcType.Int);
workParm.SourceColumn = "CategoryID";
workParm.SourceVersion = DataRowVersion.Original;

DataSet catDS = new DataSet();
catDA.Fill(catDS, "Categories");    

DataRow cRow = catDS.Tables["Categories"].Rows[0];

cRow["CategoryName"] = "New Category";

DataRow[] modRows = catDS.Tables["Categories"].Select(null, null, DataViewRowState.ModifiedCurrent);
catDA.Update(modRows);