检查 ADO.Net 中是否存在存储过程?
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
INFORMATION_SCHEMA
视图,如下所示:You can use the
INFORMATION_SCHEMA
views like so:如果您询问是否有一种方法可以在不使用任何 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
.或者,如果您不关心遵守 SQL 标准构造 (INFORMATION_SCHEMA),则可以使用内置 SQL Server 系统目录视图(2005 及更高版本)来检查:
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: