-
C#连接SQL Server数据库进行删除数据记录的示例说明
资源介绍
删除数据记录
使用Command对象的ExecuteNonQuery()方法来实现删除数据操作,用SQL的Delete语句来设定具体的要删除的记录。
下面的程序实现了在Northwind数据库中的Student表中删除指定的记录。
程序清单如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace ADONETDeleteQuery
{