使用带 SP 且不带 SP 参数但仅使用 C# 中的值的 SqlCommand
您好,可以使用 SQLCommand 来处理存储过程,但不需要指定每个参数的名称吗?
我们总是需要在某个集合(如字符串数组)中保存 SP 变量的名称才能与 SP 一起使用吗?
常见的用法是这样的:
sqlComm.Parameters.Add("@name_SP_variable", "some_value");
我的意思是,如果可以做这样的事情:
sqlComm.Parameters.Add("some_value");
如果我们只是以正确的顺序发送正确数量的参数,我们不能只放置没有 SP 变量名称的值吗? ?
Hi it's possible to use the SQLCommand to work with Stored Procedures but without the need of specify the name of each parameter?
We have always to have the names of SP variables in some collection (like array of strings) to work with the SP?
The common use is this:
sqlComm.Parameters.Add("@name_SP_variable", "some_value");
What i mean if it's possible to do something like this:
sqlComm.Parameters.Add("some_value");
If we just send the right number of parameters and in the right order, can't we just put the values without the name of the variables of the SP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
SqlCommand.DeriveParameters ()
。 这篇文章有一个示例用法。Take a look at
SqlCommand.DeriveParameters()
. This post has an example usage.