使用 Adodb 连接对象获取 Sql Server 实例名称
我需要 C# 中 Adodb 连接对象的 SQL Server 2005 实例名称。 请帮助我的查询。
提前致谢
I need SQL server 2005 instance name from Adodb connection object in c#.
Please Help for my query.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ADODB 连接本身没有可用的信息。
您可以使用您的连接运行 SQL 查询
,也可以使用 SMO(SQL Server 管理对象)来获取该信息:
The ADODB connection itself doesn't have that information avaiable.
You can either run the SQL query:
using your connection, or you can use the SMO (SQL Server Management Objects) to get that information:
尝试运行:
Try to run:
如果您正在单步执行调用数据库的 C# 代码,并且不知道它从哪里获取连接字符串,则可以在代码中调用数据库的位置附近设置一个断点。然后,您可以检查存在的各种对象的属性。例如,检查 SqlCommand 的 Connection 属性。数据库实例将包含在连接字符串中。
If you are stepping through C# code that is making a call to the database, and you don't know where it is getting the connection string from, you can set a breakpoint in the code right around the place where it makes the database call. Then, you can examine the properties of the various objects that are present. For example, check the Connection property of the SqlCommand. The database instance will be included in the connection string.