Add parameters to the SqlCommand : SqlCommand « ADO.Net « C# / CSharp Tutorial






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

class MainClass
{
   static void Main()
   {
      string fname = "Z";
      string lname = "Z";

      SqlConnection conn = new SqlConnection("server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI;");

      string sqlqry = @"select count(*) from employee";

      string sqlins = @"insert into employee(firstname,lastname)values(@fname, @lname)";

      string sqldel = @"delete from employee where firstname = @fname and lastname = @lname";

      SqlCommand cmdqry = new SqlCommand(sqlqry, conn);
      SqlCommand cmdnon = new SqlCommand(sqlins, conn);

      cmdnon.Parameters.Add("@fname", SqlDbType.NVarChar, 10);
      cmdnon.Parameters.Add("@lname", SqlDbType.NVarChar, 20);

      try
      {
         conn.Open();

         Console.WriteLine("Before INSERT: Number of employee {0}\n", cmdqry.ExecuteScalar());

         cmdnon.Parameters["@fname"].Value = fname;
         cmdnon.Parameters["@lname"].Value = lname;
         Console.WriteLine("Executing statement {0}", cmdnon.CommandText);
         cmdnon.ExecuteNonQuery();
         Console.WriteLine("After INSERT: Number of employee {0}\n", cmdqry.ExecuteScalar());

         cmdnon.CommandText = sqldel;
         Console.WriteLine("Executing statement {0}", cmdnon.CommandText);
         cmdnon.ExecuteNonQuery();
         Console.WriteLine("After DELETE: Number of employee {0}\n", cmdqry.ExecuteScalar());
      }
      catch (SqlException ex)
      {
         Console.WriteLine(ex.ToString());
      }
      finally
      {
         conn.Close();
         Console.WriteLine("Connection Closed.");
      }
   }
}








32.18.SqlCommand
32.18.1.Create a SqlCommand
32.18.2.Create SqlCommand with both sql query and connection
32.18.3.SqlCommand: AutoClose
32.18.4.Execute two sql commands
32.18.5.Asynchronous Processing Sql command
32.18.6.Start process of retrieving a data reader asynchronously, check the IsCompleted property value.
32.18.7.SqlCommand with Callback Handler
32.18.8.Add parameters to the SqlCommand
32.18.9.SQL StoredProcedure
32.18.10.Execute Scalar with SqlCommand
32.18.11.Execute the scalar SQL statement and store results
32.18.12.Executing a Parameterized Query with SqlCommand
32.18.13.Batch Update Demo
32.18.14.Execute update statement with SqlCommand against MDF file
32.18.15.Executing a Query That Returns a Single Value
32.18.16.Async Command Object Demo