Execute multiple SQL statements(insert) using a SqlCommand object : SqlCommand « Database ADO.net « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Database ADO.net » SqlCommandScreenshots 
Execute multiple SQL statements(insert) using a SqlCommand object
Execute multiple SQL statements(insert) using a SqlCommand object

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

class ExecuteMultipleSQL
{
  public static void Main()
  {
    SqlConnection mySqlConnection =new SqlConnection("server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI;");

    SqlCommand mySqlCommand = mySqlConnection.CreateCommand();

    mySqlCommand.CommandText =
      "INSERT INTO Employee (ID, FirstName) " +
      "VALUES (11, 'Jason');" +
      "SELECT ID, FirstName " +
      "FROM Employee " +
      "WHERE ID = 11;" +
      "UPDATE Employee " +
      "SET FirstName = 'Jason 2' " +
      "WHERE ID = 11;" +
      "SELECT ID, FirstName " +
      "FROM Employee " +
      "WHERE ID = 11;" +
      "DELETE FROM Employee " +
      "WHERE ID = 11;";

    mySqlConnection.Open();

    SqlDataReader mySqlDataReader = mySqlCommand.ExecuteReader();

    do
    {
      while (mySqlDataReader.Read())
      {
        Console.WriteLine("mySqlDataReader[0] = " + mySqlDataReader[0]);
        Console.WriteLine("mySqlDataReader[1] = " + mySqlDataReader[1]);
      }
      Console.WriteLine("")// visually split the results
    while (mySqlDataReader.NextResult());

    mySqlDataReader.Close();
    mySqlConnection.Close();
  }
}


           
       
Related examples in the same category
1.Use the GetOrdinal() method of a DataReader object to get the numeric positions of a column
2.How to use the ExecuteScalar() method to run a SELECT statement that returns a single value
3.Use the ExecuteNonQuery() method to run INSERT, UPDATE, and DELETE statements
4.Use SqlCommand to call SQL and insert data to database table
5.Delete data from database using SqlCommand
6.Get row count from SqlCommand
7.Pass parameters to SqlCommand
8.Get row count by 'ExecuteScalar'
9.execute multiple SELECT statements(select) using a SqlCommand object and read the results using a SqlDataReader object
10.Async Command Object
11.Populate a DataSet object using a SELECT statement
12.Use ExecuteXmlReader() to run a SELECT statement that returns XML
13.control SqlCommand to return a single row
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.