วิธีรันโพรซีเดอร์ที่เก็บภายในโปรแกรม C #


254

ฉันต้องการรันโพรซีเดอร์ที่เก็บไว้นี้จากโปรแกรม C #

ฉันได้เขียนขั้นตอนการจัดเก็บต่อไปนี้ในหน้าต่างแบบสอบถาม SqlServer และบันทึกเป็นที่เก็บไว้ 1:

use master 
go
create procedure dbo.test as

DECLARE @command as varchar(1000), @i int
SET @i = 0
WHILE @i < 5
BEGIN
Print 'I VALUE ' +CONVERT(varchar(20),@i)
EXEC(@command)
SET @i = @i + 1
END

แก้ไข:

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace AutomationApp
{
    class Program
    {
        public void RunStoredProc()
        {
            SqlConnection conn = null;
            SqlDataReader rdr  = null;

            Console.WriteLine("\nTop 10 Most Expensive Products:\n");

            try
            {
                conn = new SqlConnection("Server=(local);DataBase=master;Integrated Security=SSPI");
                conn.Open();
                SqlCommand cmd = new SqlCommand("dbo.test", conn);
                cmd.CommandType = CommandType.StoredProcedure;
                rdr = cmd.ExecuteReader();
                /*while (rdr.Read())
                {
                    Console.WriteLine(
                        "Product: {0,-25} Price: ${1,6:####.00}",
                        rdr["TenMostExpensiveProducts"],
                        rdr["UnitPrice"]);
                }*/
            }
            finally
            {
                if (conn != null)
                {
                    conn.Close();
                }
                if (rdr != null)
                {
                    rdr.Close();
                }
            }
        }
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Program p= new Program();
            p.RunStoredProc();      
            Console.Read();
        }
    }
}

Cannot find the stored procedure dbo.testการแสดงนี้เป็นข้อยกเว้น ฉันจำเป็นต้องระบุเส้นทางหรือไม่ ถ้าใช่ควรเก็บขั้นตอนการจัดเก็บไว้ในที่ใด


3
คุณดีกว่าที่จะใช้ฐานข้อมูลอื่นที่ไม่ใช่ต้นแบบแม้แต่สำหรับการทดสอบ นี่คือฐานข้อมูลระบบและคุณจะทำให้เกิดปัญหาในที่สุด ใน SQL 2012 จะไม่ให้ฉันสร้างตารางที่นั่น มันจะให้ฉันสร้าง sproc : /
Joe Johnston

คำตอบแม้จะมี: คุณได้ตรวจสอบถ้า sp ของคุณถูกสร้างขึ้นจริงด้วยชื่อที่คุณให้ (dbo.test)? ฉันไม่รู้ว่าจะเกิดอะไรขึ้นหากผู้ใช้ที่ไม่ใช่ dbo พยายามสร้าง dbo.test ... มันจะถูกสร้างเป็น non-dbo.test หรือไม่
DigCamara

5
@obayhan คำถามนี้ถูกถามเมื่อ 2 ปีก่อนที่คำถามที่คุณอ้างว่าอาจเป็นข้อมูลซ้ำซ้อน โปรดทำเครื่องหมายคำถามล่าสุดเป็นคำถามซ้ำในอนาคต
RyanfaeScotland

คำตอบ:


333
using (var conn = new SqlConnection(connectionString))
using (var command = new SqlCommand("ProcedureName", conn) { 
                           CommandType = CommandType.StoredProcedure }) {
   conn.Open();
   command.ExecuteNonQuery();
}

51
คุณสามารถกำจัดได้conn.CloseโดยDispose
Remus Rusanu

16
นั่นเป็นความจริงสำหรับกรณีนี้ ฉันชอบจับคู่OpenและCloseโทร ถ้าคุณบอกว่า refactor วัตถุการเชื่อมต่อออกมาเป็นสนามในอนาคตและลบคำสั่งการใช้คุณอาจลืมเพิ่มCloseและจบลงด้วยการเชื่อมต่อที่เปิดอยู่โดยไม่ตั้งใจ
Mehrdad Afshari

11
คุณจะทำอย่างไรถ้า proc ที่เก็บไว้ต้องการพารามิเตอร์ เพียงเพิ่มพารามิเตอร์ไปยังวัตถุคำสั่งด้วยชื่อและประเภทเดียวกัน
Dani

5
@Dani ใช่ เพียงเพิ่มพารามิเตอร์ลงในParametersคอลเลกชันของSqlCommandวัตถุ
Mehrdad Afshari

ฉันจะสามารถส่งตัวเลือกค่า DROPDOWN ใน SP ได้หรือไม่
SearchForKnowledge

246
using (SqlConnection conn = new SqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI")) {
    conn.Open();

    // 1.  create a command object identifying the stored procedure
    SqlCommand cmd  = new SqlCommand("CustOrderHist", conn);

    // 2. set the command object so it knows to execute a stored procedure
    cmd.CommandType = CommandType.StoredProcedure;

    // 3. add parameter to command, which will be passed to the stored procedure
    cmd.Parameters.Add(new SqlParameter("@CustomerID", custId));

    // execute the command
    using (SqlDataReader rdr = cmd.ExecuteReader()) {
        // iterate through results, printing each to console
        while (rdr.Read())
        {
            Console.WriteLine("Product: {0,-35} Total: {1,2}",rdr["ProductName"],rdr["Total"]);
        }
    }
}

นี่คือลิงค์ที่น่าสนใจที่คุณสามารถอ่านได้:


32
คุณควรใช้คีย์เวิร์ด "using" ผลักดันความรับผิดชอบเปิด / ปิดที่กรอบ
TruMan1

1
ความหมายของ public sealed class SqlCommand : System.Data.Common.DbCommand, ICloneable, IDisposableSqlCommand: ใส่ไว้ในusingคำสั่งจะช่วยทำความสะอาด
themefield

24

ขั้นตอนการเรียกร้านค้าใน C #

    SqlCommand cmd = new SqlCommand("StoreProcedureName",con);
    cmd.CommandType=CommandType.StoredProcedure;
    cmd.Parameters.AddWithValue("@value",txtValue.Text);
    con.Open();
    int rowAffected=cmd.ExecuteNonQuery();
    con.Close();

21
using (SqlConnection sqlConnection1 = new SqlConnection("Your Connection String")) {
using (SqlCommand cmd = new SqlCommand()) {
  Int32 rowsAffected;

  cmd.CommandText = "StoredProcedureName";
  cmd.CommandType = CommandType.StoredProcedure;
  cmd.Connection = sqlConnection1;

  sqlConnection1.Open();

  rowsAffected = cmd.ExecuteNonQuery();

}}

ฉันกังวลเกี่ยวกับวิธีการที่ cmd.CommandText = "Stored1" ตีความขั้นตอนการจัดเก็บของฉันฉันไม่รู้
น่ารัก

2
"CommandText" จะต้องตั้งค่าเป็น NAME ของกระบวนงานที่เก็บไว้ซึ่งจะถูกดำเนินการจาก C # ราวกับว่าคุณได้ดำเนินการ "exec StoredProcedureName" ใน SSMS - หรือคุณเป็นห่วงเกี่ยวกับอะไร?
marc_s

ฉันจะให้ชื่อที่เก็บไว้กระบวนการขั้นตอนการจัดเก็บดังกล่าวข้างต้นคุณสามารถบอกฉันได้อย่างไร
น่ารัก

ดังนั้นก่อนอื่นคุณจะต้องสร้างกระบวนงานที่เก็บไว้ในกรณีของรหัสที่คุณมีคุณจะต้องเพิ่ม: "สร้างขั้นตอน dbo.NameOfYourStoredProcedureHere เป็น" ที่เริ่มต้น
BlackTigerX

1
@Cute: หากคุณมีขั้นตอนนี้เป็นขั้นตอนการจัดเก็บคุณต้องมีชื่อ! ชื่อที่ใช้ในการเรียก "CREATE PROCEDURE (procedureurename)" หากคุณไม่มีสิ่งนั้นแสดงว่าคุณไม่มีโพรซีเดอร์ที่เก็บไว้ (แต่เป็นชุดคำสั่ง T-SQL) และจากนั้นคุณไม่สามารถใช้ "CommandType = StoredProcedure", obviusly
marc_s

15
SqlConnection conn = null;
SqlDataReader rdr  = null;
conn = new SqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI");
conn.Open();

// 1.  create a command object identifying
//     the stored procedure
SqlCommand cmd  = new SqlCommand("CustOrderHist", conn);

// 2. set the command object so it knows
//    to execute a stored procedure
cmd.CommandType = CommandType.StoredProcedure;

// 3. add parameter to command, which
//    will be passed to the stored procedure
cmd.Parameters.Add(new SqlParameter("@CustomerID", custId));

// execute the command
rdr = cmd.ExecuteReader();

// iterate through results, printing each to console
while (rdr.Read())
{
    Console.WriteLine("Product: {0,-35} Total: {1,2}", rdr["ProductName"], rdr["Total"]);
}

14

นี่คือรหัสสำหรับการดำเนินการตามขั้นตอนที่เก็บไว้พร้อมกับและไม่ระบุพารามิเตอร์ผ่านการสะท้อนกลับ โปรดทราบว่าชื่อคุณสมบัติวัตถุต้องตรงกับพารามิเตอร์ของกระบวนงานที่เก็บไว้

private static string ConnString = ConfigurationManager.ConnectionStrings["SqlConnection"].ConnectionString;
    private SqlConnection Conn = new SqlConnection(ConnString);

    public void ExecuteStoredProcedure(string procedureName)
    {
        SqlConnection sqlConnObj = new SqlConnection(ConnString);

        SqlCommand sqlCmd = new SqlCommand(procedureName, sqlConnObj);
        sqlCmd.CommandType = CommandType.StoredProcedure;

        sqlConnObj.Open();
        sqlCmd.ExecuteNonQuery();
        sqlConnObj.Close();
    }

    public void ExecuteStoredProcedure(string procedureName, object model)
    {
        var parameters = GenerateSQLParameters(model);
        SqlConnection sqlConnObj = new SqlConnection(ConnString);

        SqlCommand sqlCmd = new SqlCommand(procedureName, sqlConnObj);
        sqlCmd.CommandType = CommandType.StoredProcedure;

        foreach (var param in parameters)
        {
            sqlCmd.Parameters.Add(param);
        }

        sqlConnObj.Open();
        sqlCmd.ExecuteNonQuery();
        sqlConnObj.Close();
    }

    private List<SqlParameter> GenerateSQLParameters(object model)
    {
        var paramList = new List<SqlParameter>();
        Type modelType = model.GetType();
        var properties = modelType.GetProperties();
        foreach (var property in properties)
        {
            if (property.GetValue(model) == null)
            {
                paramList.Add(new SqlParameter(property.Name, DBNull.Value));
            }
            else
            {
                paramList.Add(new SqlParameter(property.Name, property.GetValue(model)));
            }
        }
        return paramList;

    }

5

โดยใช้ Ado.net

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

namespace PBDataAccess
{
    public class AddContact
    {   
        // for preparing connection to sql server database   

        private SqlConnection conn; 

        // for preparing sql statement or stored procedure that 
        // we want to execute on database server

        private SqlCommand cmd; 

        // used for storing the result in datatable, basically 
        // dataset is collection of datatable

        private DataSet ds; 

        // datatable just for storing single table

        private DataTable dt; 

        // data adapter we use it to manage the flow of data
        // from sql server to dataset and after fill the data 
        // inside dataset using fill() method   

        private SqlDataAdapter da; 


        // created a method, which will return the dataset

        public DataSet GetAllContactType() 
        {



    // retrieving the connection string from web.config, which will 
    // tell where our database is located and on which database we want
    // to perform opearation, in this case we are working on stored 
    // procedure so you might have created it somewhere in your database. 
    // connection string will include the name of the datasource, your 
    // database name, user name and password.

        using (conn = new SqlConnection(ConfigurationManager.ConnectionString["conn"]
        .ConnectionString)) 

                {
                    // Addcontact is the name of the stored procedure
                    using (cmd = new SqlCommand("Addcontact", conn)) 

                    {
                        cmd.CommandType = CommandType.StoredProcedure;

                    // here we are passing the parameters that 
                    // Addcontact stored procedure expect.
                     cmd.Parameters.Add("@CommandType",
                     SqlDbType.VarChar, 50).Value = "GetAllContactType"; 

                        // here created the instance of SqlDataAdapter
                        // class and passed cmd object in it
                        da = new SqlDataAdapter(cmd); 

                        // created the dataset object
                        ds = new DataSet(); 

                        // fill the dataset and your result will be
                        stored in dataset
                        da.Fill(ds); 
                    }                    
            }  
            return ds;
        }
}

****** Stored Procedure ******

CREATE PROCEDURE Addcontact
@CommandType VARCHAR(MAX) = NULL
AS
BEGIN
  IF (@CommandType = 'GetAllContactType')
  BEGIN
    SELECT * FROM Contacts
  END
END

บรรทัดความคิดเห็นของคุณจะใช้งานไม่ได้และถ้าคุณสามารถให้ขั้นตอนการจัดเก็บไว้ในความคิดเห็นของคุณซึ่งจะดีสำหรับเรา
PeerNet

ได้เพิ่มขั้นตอนการจัดเก็บไว้ในรหัสตรวจสอบออก
Johnny

4

นี่คือตัวอย่างของกระบวนงานที่เก็บไว้ซึ่งส่งคืนค่าและดำเนินการใน c #

CREATE PROCEDURE [dbo].[InsertPerson]   
-- Add the parameters for the stored procedure here  
@FirstName nvarchar(50),@LastName nvarchar(50),  
@PersonID int output  
AS  
BEGIN  
    insert [dbo].[Person](LastName,FirstName) Values(@LastName,@FirstName)  

    set @PersonID=SCOPE_IDENTITY()  
END  
Go  


--------------
 // Using stored procedure in adapter to insert new rows and update the identity value.  
   static void InsertPersonInAdapter(String connectionString, String firstName, String lastName) {  
      String commandText = "dbo.InsertPerson";  
      using (SqlConnection conn = new SqlConnection(connectionString)) {  
         SqlDataAdapter mySchool = new SqlDataAdapter("Select PersonID,FirstName,LastName from [dbo].[Person]", conn);  

         mySchool.InsertCommand = new SqlCommand(commandText, conn);  
         mySchool.InsertCommand.CommandType = CommandType.StoredProcedure;  

         mySchool.InsertCommand.Parameters.Add(  
             new SqlParameter("@FirstName", SqlDbType.NVarChar, 50, "FirstName"));  
         mySchool.InsertCommand.Parameters.Add(  
             new SqlParameter("@LastName", SqlDbType.NVarChar, 50, "LastName"));  

         SqlParameter personId = mySchool.InsertCommand.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 0, "PersonID"));  
         personId.Direction = ParameterDirection.Output;  

         DataTable persons = new DataTable();  
         mySchool.Fill(persons);  

         DataRow newPerson = persons.NewRow();  
         newPerson["FirstName"] = firstName;  
         newPerson["LastName"] = lastName;  
         persons.Rows.Add(newPerson);  

         mySchool.Update(persons);  
         Console.WriteLine("Show all persons:");  
         ShowDataTable(persons, 14); 

2

ใช้ Dapper ดังนั้นฉันจึงเพิ่มสิ่งนี้ฉันหวังว่าทุกคนจะช่วย

public void Insert(ProductName obj)
        {
            SqlConnection connection = new SqlConnection(Connection.GetConnectionString());
            connection.Open();
            connection.Execute("ProductName_sp", new
            { @Name = obj.Name, @Code = obj.Code, @CategoryId = obj.CategoryId, @CompanyId = obj.CompanyId, @ReorderLebel = obj.ReorderLebel, @logo = obj.logo,@Status=obj.Status, @ProductPrice = obj.ProductPrice,
                @SellingPrice = obj.SellingPrice, @VatPercent = obj.VatPercent, @Description=obj.Description, @ColourId = obj.ColourId, @SizeId = obj.SizeId,
                @BrandId = obj.BrandId, @DisCountPercent = obj.DisCountPercent, @CreateById =obj.CreateById, @StatementType = "Create" }, commandType: CommandType.StoredProcedure);
            connection.Close();
        }

2

กรุณาตรวจสอบ Crane (ฉันเป็นผู้เขียน)

https://www.nuget.org/packages/Crane/

SqlServerAccess sqlAccess = new SqlServerAccess("your connection string");
var result = sqlAccess.Command().ExecuteNonQuery("StoredProcedureName");

นอกจากนี้ยังมีคุณสมบัติอื่น ๆ ที่คุณอาจชอบ


สิ่งนี้ใช้ไม่ได้ สิ่งนี้ล้าสมัยหรือไม่ ฉันหาวิธีการไม่พบ
Maddy

ฉันได้อัปเดตตัวอย่างแล้วขอบคุณที่แจ้งให้ฉันทราบ
Greg R Taylor

คุณจะส่งคืนชุดข้อมูลหลายชุดด้วยเครนได้อย่างไร proc ที่เก็บไว้ของฉันส่งคืนชุดข้อมูล 3 ชุดและฉันสนใจเฉพาะชุดข้อมูลชุดที่สองเท่านั้น แต่เครนส่งคืนฉันคนแรกเท่านั้น
Hoang Minh

1

คุณหมายถึงว่ารหัสของคุณเป็น DDL? ถ้าเป็นเช่นนั้น MSSQL ก็ไม่มีความแตกต่าง ตัวอย่างด้านบนแสดงวิธีการเรียกใช้สิ่งนี้ได้เป็นอย่างดี เพียงแค่ให้แน่ใจ

CommandType = CommandType.Text

1

ไม่มีคำตอบDapperที่นี่ ดังนั้นฉันจึงเพิ่ม

using Dapper;
using System.Data.SqlClient;

using (var cn = new SqlConnection(@"Server=(local);DataBase=master;Integrated Security=SSPI"))
    cn.Execute("dbo.test", commandType: CommandType.StoredProcedure);
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.