如何不通过查询而是通过 C# 调用列出 SQL Server 中的数据库?
From this:
Enumerate all running databases
One can list the servers on the network, but once one selects one of those servers, how does one then list the DB's in that server, by using a similar method as above?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SQL 管理对象 (SMO)。首先,您可以使用 SmoApplication 类及其 EnumAvailableSqlServers 方法之一来查找服务器。
找到所需的服务器后,您将创建一个Server 实例,然后使用其 数据库 财产。
You can use SQL Management Objects (SMO). First, you'd use the SmoApplication class and one of its EnumAvailableSqlServers methods to find the server.
Once you've found the server you want, you'd create a Server instance, and then use its Databases property.
大多数与数据库服务器的交互最终都会转化为 SQL。即使它们看起来像其他更高级别的 API。
查找执行此操作的 SQL,然后从 C#
UPDATE 调用它:
来自此处
Most interactions with a database server eventually translate to SQL. Even if they look like some other API in a higher level.
Look for the SQL to do this and just call it from C#
UPDATE:
From here