Async Command Object : SqlCommand « Database ADO.net « C# / C Sharp






Async Command Object

 

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;

using System.Runtime.Remoting.Messaging;
using System.Threading;

class Program {
    static void Main(string[] args) {
        SqlConnection cn = new SqlConnection();
        cn.ConnectionString = "uid=sa;pwd=;Initial Catalog=Cars;Asynchronous Processing=true;Data Source=(local)";
        cn.Open();

        string strSQL = "WaitFor Delay '00:00:02';Select * From Inventory";
        SqlCommand myCommand = new SqlCommand(strSQL, cn);

        IAsyncResult itfAsynch;
        itfAsynch = myCommand.BeginExecuteReader(CommandBehavior.CloseConnection);

        while (!itfAsynch.IsCompleted) {
            Console.WriteLine("Working on main thread...");
            Thread.Sleep(1000);
        }
        SqlDataReader myDataReader = myCommand.EndExecuteReader(itfAsynch);
        while (myDataReader.Read()) {
            Console.WriteLine("-> Make: {0}, PetName: {1}, Color: {2}.",
              myDataReader["Make"].ToString().Trim(),
              myDataReader["PetName"].ToString().Trim(),
              myDataReader["Color"].ToString().Trim());
        }
        myDataReader.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 SQL statements(insert) using a SqlCommand objectExecute multiple SQL statements(insert) using a SqlCommand object
10.execute multiple SELECT statements(select) using a SqlCommand object and read the results using a SqlDataReader 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