ConsoleApplication1
{
    class Program
    {
        
static void Main(string[] args)
        {
            SqlConnection conn 
= new SqlConnection("Server=zhuobin;uid=sa;pwd=zhuobin;database=Northwind");
            
string qry = @"select * from employees where country='UK'";
            
string del = @"delete from employees where employeeid=@employeeid";
            
try
            { 
               
//Create the adapter
                SqlDataAdapter da = new SqlDataAdapter();
                da.SelectCommand 
= new SqlCommand(qry,conn);
                
//Create the DataSet
                DataSet ds = new DataSet();
                da.Fill(ds,
"Employees");
                
//get data Table reference
                DataTable dt=ds.Tables["employees"];
                
//Create the Command
                SqlCommand cmd = new SqlCommand(del,conn);
                cmd.Parameters.Add(
"@employeeid",SqlDbType.Int,4,"employeeid");
                
string filter = @"firstname='Roy' and lastname='Beatty'";
                
//delete employees
                foreach (DataRow row in dt.Select(filter))
                {
                    row.Delete();
                }
                da.DeleteCommand 
= cmd;
                da.Update(ds,
"employees");
                
foreach (DataRow row in dt.Rows)
                {
                    Console.WriteLine(
"{0}{1}{2}",row["firstname"].ToString().PadRight(15),row["lastname"].ToString().PadLeft(25),row["city"]);
                }


            }
            
catch (SqlException ex)
            {
                Console.WriteLine(
"The error:{0}", ex.Message);
            }
            
finally
            {
                conn.Close();
            } Console.ReadLine();
        }
    }
}

相关文章:

  • 2022-12-23
  • 2022-02-26
  • 2022-12-23
  • 2021-05-21
  • 2022-01-23
猜你喜欢
  • 2021-09-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-02
相关资源
相似解决方案