使用带 SP 且不带 SP 参数但仅使用 C# 中的值的 SqlCommand

发布于 2024-11-03 02:07:38 字数 350 浏览 1 评论 0原文

您好,可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以可爱出名 2024-11-10 02:07:38

查看 SqlCommand.DeriveParameters ()这篇文章有一个示例用法。

Take a look at SqlCommand.DeriveParameters(). This post has an example usage.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文