如何列出 SQL 2005 Express 实例
我想列出本地或远程计算机上安装的 SQL 2005 Server(Express Edition)实例(我的应用程序是本机 C++)。 我发现我可以通过 SQLDMO 实现它,但是 SQLDMO 似乎看不到 SQL 2005 Express Edition 并且对 ListAvailableSqlServers 的调用返回空列表。
我怎样才能做到呢? 使用系统注册表是一种极端的解决方案,仅适用于本地计算机。
I would like to list what instances of SQL 2005 Server (Express Editon) are installed on local or remote machine (my app is in Native C++). I found that i can make it by SQLDMO, however it seems that SQLDMO does not see SQL 2005 Express Edition and call to ListAvailableSqlServers returns empty list.
How can i make it? Playing with system registry is an extreme solution and applies only for local machines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
明白了...找到 SQLBrowseConnect。 答案与 MSDN 中的惯例一样:-)
Got it... Found SQLBrowseConnect. Answer is as usual in MSDN :-)
您可以尝试 SqlDataSourceEnumerator.GetDataSources()。 尽管我还没有在 C++ 中尝试过,但它在 C# 和 VB.Net 中运行良好。
You can try SqlDataSourceEnumerator.GetDataSources(). Works well in C# and VB.Net though I haven't tried it from C++.