使用 Adodb 连接对象获取 Sql Server 实例名称

发布于 2024-08-16 08:47:16 字数 71 浏览 5 评论 0原文

我需要 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 技术交流群。

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

发布评论

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

评论(3

假扮的天使 2024-08-23 08:47:16

ADODB 连接本身没有可用的信息。

您可以使用您的连接运行 SQL 查询

SELECT SERVERPROPERTY('instancename') 

,也可以使用 SMO(SQL Server 管理对象)来获取该信息:

using(SqlConnection _con = new SqlConnection(your-connection-string))
{
   string instanceName = new Microsoft.SqlServer.Management.Smo.Server
                            (new ServerConnection(_con)).InstanceName;
}

The ADODB connection itself doesn't have that information avaiable.

You can either run the SQL query:

SELECT SERVERPROPERTY('instancename') 

using your connection, or you can use the SMO (SQL Server Management Objects) to get that information:

using(SqlConnection _con = new SqlConnection(your-connection-string))
{
   string instanceName = new Microsoft.SqlServer.Management.Smo.Server
                            (new ServerConnection(_con)).InstanceName;
}
绝影如岚 2024-08-23 08:47:16

尝试运行:

SELECT @@ServerName  AS ServerName,
       @@ServiceName AS ServiceName

Try to run:

SELECT @@ServerName  AS ServerName,
       @@ServiceName AS ServiceName
樱花落人离去 2024-08-23 08:47:16

如果您正在单步执行调用数据库的 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.

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