经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 数据库/运维 » MS SQL Server » 查看文章
SQL Server 存储过程 数组参数 (How to pass an array into a SQL Server stored procedure)
来源:cnblogs  作者:StoneLeee  时间:2019/9/10 10:50:37  对本文有异议

Resource from StackOverflow

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

1.分割解析字符串,太麻烦
2.添加Sql Server 自定义类型 sp_addtype

问题需求:需要向SP 传递数组类型的参数
  1. select * from Users where ID IN (1,2,3 )

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

  1. CREATE TYPE dbo.IDList
  2. AS TABLE
  3. (
  4. ID INT
  5. );
  6. GO

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

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

Example

1. First, in your database, create the following two objects

  1. CREATE TYPE dbo.IDList
  2. AS TABLE
  3. (
  4. ID INT
  5. );
  6. GO
  7. CREATE PROCEDURE [dbo].[DoSomethingWithEmployees]
  8. @IDList AS dbo.IDList readonly
  9. AS
  10. SELECT * FROM [dbo].[Employees]
  11. where ContactId in
  12. ( select ID from @IDList )
  13. RETURN

2. In your C# code

  1. // Obtain your list of ids to send, this is just an example call to a helper utility function
  2. int[] employeeIds = GetEmployeeIds();
  3. DataTable tvp = new DataTable();
  4. tvp.Columns.Add(new DataColumn("ID", typeof(int)));
  5. // populate DataTable from your List here
  6. foreach(var id in employeeIds)
  7. tvp.Rows.Add(id);
  8. using (conn)
  9. {
  10. SqlCommand cmd = new SqlCommand("dbo.DoSomethingWithEmployees", conn);
  11. cmd.CommandType = CommandType.StoredProcedure;
  12. SqlParameter tvparam = cmd.Parameters.AddWithValue("@List", tvp);
  13. // these next lines are important to map the C# DataTable object to the correct SQL User Defined Type
  14. tvparam.SqlDbType = SqlDbType.Structured;
  15. tvparam.TypeName = "dbo.IDList";
  16. // execute query, consume results, etc. here
  17. }

原文链接:http://www.cnblogs.com/leestone/p/11481116.html

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号