插入 删除和更新数据
//定义一个需要访问的数据库的信息 string strCon = "Server=PC-20161029WDCV\\SQL2014;Database=StudentDB;Trusted_Connection=True"; SqlConnection con = new SqlConnection(strCon); con.open(); //把sql语句换成删除和更新,即可实现删除和更新操作 string sql=“insert into Student (学号,姓名,性别,出生时间,专业)values('001','张三','女',‘1989-11-21’,'计算机')”; SqlCommand cmd=new SqlCommand(sql,con); cmd.ExecuteNonQuery(); con.Close(); MessageBox.Show("添加成功!");