Call stored procedure with parameters using SqlCommand : SqlConnection Stored Procedure : ADO.Net C# Examples


C# Examples » ADO.Net » SqlConnection Stored Procedure »

 

Call stored procedure with parameters using SqlCommand









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

class  MainClass
{
    static  void  Main(string[]  args)
        {
                string  SQL  =  "SELECT  *  FROM  Orders";

                string  ConnectionString  ="Integrated  Security=SSPI;Initial  Catalog=Northwind;Data  Source=localhost;";
                SqlConnection  conn  =  new  SqlConnection(ConnectionString);

                SqlCommand  StoredProcedureCommand  =  new  SqlCommand("Sales  By  Year",  conn);
                StoredProcedureCommand.CommandType  =  CommandType.StoredProcedure;
                SqlParameter  myParm1  =  StoredProcedureCommand.Parameters.Add(  "@Beginning_Date",  SqlDbType.DateTime,  20);  
                myParm1.Value  =  "7/1/1996";
                SqlParameter  myParm2  =  StoredProcedureCommand.Parameters.Add("@Ending_Date",  SqlDbType.DateTime,  20);  
                myParm2.Value  =  "7/31/1996";
                conn.Open();
                SqlDataReader  TheReader  =  StoredProcedureCommand.ExecuteReader();
                string  orderlist  =  "";
                while  (TheReader.Read())
                {
            string  nextID  =  TheReader["OrderID"].ToString();
            string  nextSubtotal  =  TheReader["Subtotal"].ToString();
            orderlist  +=  nextID  +  '\t'  +  nextSubtotal  +  '\n';
                }
                conn.Close();
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo ADO.Net
» SqlConnection Stored Procedure