gpt4 book ai didi

c# - 将多个参数作为单个字符串变量传递给 sql 过程

转载 作者:行者123 更新时间:2023-11-30 18:54:16 24 4
gpt4 key购买 nike

从前端(studio 2008)我将值传递给 sql 过程:

字符串 a = "你好"+ "098765"+ "世界"+ "90.0909"

我将这些 4 个不同的值连接成一个字符串 a;

现在我使用 c# sqlCommand 对象将这个 string a 传递给 sql 过程。

现在,我如何在创建过程时在 sql 过程中检索这 4 个值:

create procedure Proc_name (@concatenated_string varchar(100))
as
insert into table1 values(**how can i get those 4 values here**).

我使用了数组,但没有用。

最佳答案

如果您想将数组传递到 SQL Server 以处理一个表上的“多行”更新,请阅读此 famous article(s).

如果你想要一个通用的存储过程来更新任何表,那么不要按照其他评论

关于c# - 将多个参数作为单个字符串变量传递给 sql 过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2152396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com