zoukankan      html  css  js  c++  java
  • SQL Server 存储过程 数组参数 (How to pass an array into a SQL Server stored procedure)

    Resource from StackOverflow

    使用存储过程,如何传递数组参数?

    1.分割解析字符串,太麻烦 2.添加Sql Server 自定义类型 **sp_addtype**
    问题需求:需要向SP 传递数组类型的参数
    select * from Users where ID IN (1,2,3 )
    

    Sql Server 数据类型 并没有数组,但是允许自定义类型,通过 sp_addtype
    添加 一个自定义的数据类型,可以允许c# code 向sp传递 一个数组类型的参数
    但是不能直接使用 sp_addtype,而是需要结构类型的数据格式,如下:

    CREATE TYPE dbo.IDList
    AS TABLE
    (
      ID INT
    );
    GO
    

    有点像个是一个临时表,一种对象,这里只加了ID
    在sp 中可以声明自定义类型的参数

    CREATE PROCEDURE [dbo].[DoSomethingWithEmployees]
    	@IDList AS  dbo.IDList readonly
    

    Example

    #### 1. First, in your database, create the following two objects
    CREATE TYPE dbo.IDList
    AS TABLE
    (
      ID INT
    );
    GO
    
    CREATE PROCEDURE [dbo].[DoSomethingWithEmployees]
    	@IDList AS  dbo.IDList readonly
    	
    AS
    	 SELECT * FROM [dbo].[Employees] 
    	  where ContactId in
    	   (  select ID from @IDList )
    RETURN 
    

    2. In your C# code

    // Obtain your list of ids to send, this is just an example call to a helper utility function
    int[] employeeIds = GetEmployeeIds();
    DataTable tvp = new DataTable();
    tvp.Columns.Add(new DataColumn("ID", typeof(int)));
    // populate DataTable from your List here
    foreach(var id in employeeIds)
          tvp.Rows.Add(id);
    using (conn)
    {
        SqlCommand cmd = new SqlCommand("dbo.DoSomethingWithEmployees", conn);
        cmd.CommandType = CommandType.StoredProcedure;
        SqlParameter tvparam = cmd.Parameters.AddWithValue("@List", tvp);
    
        // these next lines are important to map the C# DataTable object to the correct SQL User Defined Type
        tvparam.SqlDbType = SqlDbType.Structured;
        tvparam.TypeName = "dbo.IDList";
        
        // execute query, consume results, etc. here
    }
  • 相关阅读:
    Git 码云操作
    多线程基础必要知识点!看了学习多线程事半功倍(转)
    Spring技术内幕:设计理念和整体架构概述(转)
    单例模式你会几种写法?(转)
    Linux-看完这篇Linux基本的操作就会了(转)
    每天一个linux命令9之crontab 定时任务
    在linux下给grep命令添加颜色
    springmvc使用StringHttpMessageConverter需要配置编码
    MySQL 中的 base64 函数
    spirng整合rmi
  • 原文地址:https://www.cnblogs.com/leestone/p/11481116.html
Copyright © 2011-2022 走看看