数据库已通过dataAdapter连接 程序运行时报错“对于不返回任何健列信息的select command不支持delete command的动态SQL支持” 什么意思啊?
try
{
cTable.Rows[dataGrid1.CurrentCell.RowNumber].Delete ();
customerDA.Update(customerDS,"contact");
customerDS.AcceptChanges();
}
catch (Exception ex )
{
MessageBox.Show("Error: \n" + ex.Message );
//this.UpdateTextBoxes();
return;
}