检查 ADO.Net 中是否存在存储过程?

发布于 2024-08-31 01:32:21 字数 79 浏览 4 评论 0原文

如何使用 ADO.Net 检查存储过程是否存在?有没有特定的方法来执行此操作(除了执行 SELECT OBJECT_ID() 并检查结果之外)?

How do I check that a stored procedure exists using ADO.Net? Is there a specific way to do this (apart from executing SELECT OBJECT_ID() and checking the result)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

指尖上得阳光 2024-09-07 01:32:21

您可以使用 INFORMATION_SCHEMA 视图,如下所示:

Select *
From INFORMATION_SCHEMA.ROUTINES
Where ROUTINE_NAME = '<your procedure name>'

You can use the INFORMATION_SCHEMA views like so:

Select *
From INFORMATION_SCHEMA.ROUTINES
Where ROUTINE_NAME = '<your procedure name>'
遗忘曾经 2024-09-07 01:32:21

如果您询问是否有一种方法可以在不使用任何 SQL 的情况下进行检查,那么答案是否定的。

如果您确实想要仅代码,则可以使用 SQL 管理对象解决方案,但这是一个相当重的依赖项,只是为了检查存储过程是否存在而添加 - 而且它只会在幕后发出 SQL。

最好只使用 SqlCommand

If you're asking whether or not there's a way to check without using any SQL at all, then the answer is no.

You could use SQL Management Objects if you really want a code-only solution, but that's a pretty heavy dependency to add simply to check for the existence of a stored procedure - and it's just going to issue SQL behind the scenes anyway.

It's best if you simply use a SqlCommand.

时光瘦了 2024-09-07 01:32:21

或者,如果您不关心遵守 SQL 标准构造 (INFORMATION_SCHEMA),则可以使用内置 SQL Server 系统目录视图(2005 及更高版本)来检查:

SELECT object_id, name
FROM sys.procedures
WHERE name = 'your-procedure-name-here'

Or if you don't care about adhering to SQL standard constructs (INFORMATION_SCHEMA), you can use the built-in SQL Server system catalog view (2005 and up) to check:

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