Inserting Data Using SQLStatements : SqlCommand Insert : ADO.Net C# Examples


C# Examples » ADO.Net » SqlCommand Insert »

 

Inserting Data Using SQLStatements









    
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  =  @"INSERT  INTO  Employee(ID,  FirstName,  LastName)  VALUES(2,  'G',  'M')";
        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 Insert