从数据库中删除列表框中的项目

时间:2011-04-25 08:53:24

标签: c#

我遇到了这个例外:

InvalidOperationException was unhandled
Missing the DataColumn 'Member_ID' in the DataTable 'tblEvents' for the SourceColumn 'Member_ID'.

这当然没有意义,因为我在这里使用另一张表,你可以找到我的代码和截图谢谢。

public void deleteEvent(ListBox list_event)
{
     int i = list_event.SelectedIndex;

     ds.Tables["tblEvents"].Rows[i].Delete();
     da.Update(ds.Tables["tblEvents"]);
}

截图:

enter image description here

0 个答案:

没有答案