删除数据库中的信息
try{//删除语句
string sql = string.Format("delect from information where name = {0}",lvwInformation.SelectedItems[0].Tag);
//创建Command对象
SqlCommand command = new SqlCommand(sql,we.connection);
//打开数据库
we.connection.opten();
……………………
……………………
}
红色部分是什么意思,麻烦知道的朋友给我解答下。
谢谢!~