gpt4 book ai didi

c# - 如何获取本地网络中已安装和存在的 Sql Server 实例(或 SqlExpress)的列表

转载 作者:行者123 更新时间:2023-11-30 21:16:15 25 4
gpt4 key购买 nike

我想获取本地网络中存在的 Sql 服务器实例列表及其所属计算机的名称。

问题 2:如果用户选择 SqlExpress 的每个实例,我想获取它的安装路径,例如“C:\Program Files\Microsoft SQL Server......”。

非常感谢。

最佳答案

检查这个MSDN page

编辑:为了将来引用,这里是相关代码。:

using System.Data.Sql;

class Program
{
static void Main()
{
// Retrieve the enumerator instance and then the data.
SqlDataSourceEnumerator instance =
SqlDataSourceEnumerator.Instance;
System.Data.DataTable table = instance.GetDataSources();

// Display the contents of the table.
DisplayData(table);

Console.WriteLine("Press any key to continue.");
Console.ReadKey();
}

private static void DisplayData(System.Data.DataTable table)
{
foreach (System.Data.DataRow row in table.Rows)
{
foreach (System.Data.DataColumn col in table.Columns)
{
Console.WriteLine("{0} = {1}", col.ColumnName, row[col]);
}
Console.WriteLine("============================");
}
}
}

关于c# - 如何获取本地网络中已安装和存在的 Sql Server 实例(或 SqlExpress)的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5297021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com