Call a store procedure : Store Procedure « 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.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Database ADO.net » Store ProcedureScreenshots 
Call a store procedure

//Call a store procedure

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;
using System.Data;
using System.Data.SqlClient;

namespace Client.Chapter_13___ADO.NET
{
    public class Callastoreprocedure
    {
        static void Main(string[] args)
        {
            SqlConnection cn = new SqlConnection(
            "Data Source=(local); Initial  Catalog = MyDatabase; User ID=sa;Password=");
            SqlCommand cmd = new SqlCommand("MyStoredProcedure", cn);
            cmd.CommandType = CommandType.StoredProcedure;
            SqlParameter param = new SqlParameter("@ReturnValue", SqlDbType.Int);
            cmd.Parameters.Add(param);
            cmd.Parameters.Add("MyFirstParameter", SqlDbType.Int);
            cmd.Parameters.Add("MySecondParameter", SqlDbType.Int).Direction =
            ParameterDirection.Output;
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            
        }
    }
}



          
       
Related examples in the same category
1.Add parameters to SqlCommand to call stored procedure
2.Call the SQL Server AddProduct() stored procedure with SqlCommand
3.Illustrates simple stored procedures with unnamed parameters in the queryIllustrates simple stored procedures with unnamed parameters in the query
4.Populate a DataSet object using a store procedure
5.Call the SQL Server AddProduct() store procedure
6.Get Return from SQL Server store procedure
7.Call Simple Store Procedure
8.illustrates how to call a SQL Server stored procedure
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.