Delete data using sql statements : SqlCommand Delete : ADO.Net C# Examples


C# Examples » ADO.Net » SqlCommand Delete »

 

Delete data using sql statements









    
using  System;
using  System.Data;
using  System.Data.SqlClient;

class  MainClass
{
    static  void  Main(string[]  args)
    {
        SqlConnection  MyConnection  =  new  SqlConnection("server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated  Security=SSPI;");

        MyConnection.Open();

        String  MyString  =  "DELETE  Employee";
        SqlCommand  MyCmd  =  new  SqlCommand(MyString,  MyConnection);

        MyCmd.ExecuteScalar();
        MyConnection.Close();
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo ADO.Net
» SqlCommand Delete