[求助]DELETE
string StrSQL="DELETE FROM gqsz WHERE xh='"+this.listView1.SelectedItems [0].Text.Trim()+"'";
this.sqlCommand1.CommandText=StrSQL;
this.sqlCommand1.Connection=this.con;
//打开数据库连接
this.con.Open();
//执行SQL命令
this.sqlCommand1.ExecuteNonQuery();
//关闭连接
this.con.Close();
//更新数据集
this.dataSet1.Tables["gqsz"].Rows[this.MyBind.Position].BeginEdit();
this.dataSet1.Tables["gqsz"].Rows[this.MyBind.Position].EndEdit();
this.dataSet1.AcceptChanges();
this.SqlDataAdapter1.Fill(this.dataSet1,"gqsz");
this.MyBind.Position=this.MyBind.Count;
MessageBox.Show("此操作将会删除选定的歌曲","信息提 示",MessageBoxButtons.YesNo,MessageBoxIcon.Question,MessageBoxDefaultButton.Button1);
错误显示:未将对象引用设置到对象实例。
小弟刚学,很菜
是哪里应该怎么写!!!!万分感谢!!!!!