在C#中建立SQLServer的預存程序

來源:互聯網
上載者:User

1建立:使用VS2005的“預存程序”模板建立;
2.部署:通過VS2005部署自動在SQLServer中建立預存程序;
3.使用:在C#中使用命令對象調用預存程序。

建立預存程序:
GetProduct.cs:

view source

print?

01.using System;

02.using System.Data;

03.using System.Data.SqlClient;

04.using System.Data.SqlTypes;

05.using Microsoft.SqlServer.Server;

06.  

07.  

08.public partial class StoredProcedures

09.{

10.    [Microsoft.SqlServer.Server.SqlProcedure]

11.    public static void GetProduct(int id)

12.    {

13.        //使用調用該預存程序的用戶端開啟的串連www.k2tiyu.com

14.        SqlConnection conn = new SqlConnection("Context Connection=true");

15.        conn.Open();

16.        SqlCommand cmd = new SqlCommand();

17.        cmd.Connection = conn;

18.        cmd.CommandText = "Select ProductID, ProductName, CategoryID, Quantity FROM Products Where ProductID = @ID";

19.        cmd.Parameters.Add("@ID", SqlDbType.Int, 0);

20.        cmd.Parameters["@ID"].Value = id;

21.  

22.        SqlDataReader reader = cmd.ExecuteReader();

23.        SqlPipe pipe = SqlContext.Pipe;

24.        //將讀取器返回給用戶端www.h258w.com

25.        pipe.Send(reader);

26.    }

27.};

測試預存程序:www.kanzhibotv.com

01.using System;

02.using System.Collections.Generic;

03.using System.Text;

04.using System.Data.SqlClient;

05.using System.Data;

06.  

07.namespace Magci.Test.SQLServer.TestProc

08.{

09.    class Program

10.    {

11.        static void Main(string[] args)

12.        {

13.            string source = @"server=.\sqlexpress; database=MGC; trusted_connection=true";

14.            using (SqlConnection conn = new SqlConnection(source))

15.            {

16.                conn.Open();

17.                SqlCommand cmd = conn.CreateCommand();

18.                cmd.CommandText = "GetProduct";

19.                cmd.CommandType = CommandType.StoredProcedure;

20.                SqlParameter param = new SqlParameter("@id", 1);

21.                cmd.Parameters.Add(param);

22.                using (SqlDataReader reader = cmd.ExecuteReader())

23.                {

24.                    while (reader.Read())

25.                    {

26.                        Console.WriteLine("Name: {0}, CategoryID: {1}, Quantity: {2}", reader["ProductName"], reader["CategoryID"], reader["Quantity"]);

27.                    }

28.  

29.                    reader.Close();

30.                }

31.                  

32.  

33.                conn.Close();

34.            }

35.            Console.ReadLine();

36.        }

37.    }

38.}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.