程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> C#列出局域網中可用SQL Server服務器

C#列出局域網中可用SQL Server服務器

編輯:關於MYSQL數據庫

SQLDMO由Microsoft SQL Server自帶的SQLDMO.dll提供,由於SQLDMO.dll是一個COM對象,所以大家在用之前必須在.NET項目中添加對它的引用。注意是添加COM引用,在列表中找到“Microsoft  SQLDMO Object Library(可能路徑是:系統盤符:\Program Files\Microsoft SQL Server\80\Tools\Binn\sqldmo.dll)”,然後點確定即可添加引用。
下面是用C#語言書寫的用於列舉局域網中可用的Microsoft SQL Server的類:

using System;
using System.Collections.Generic;
using System.Text;

namespace AllSqlServer
{
    class Program
    {
        static void Main(string[] args)
        {
            SQLDMO.NameList names;
            SQLDMO.ApplicationClass ac = new SQLDMO.ApplicationClass();
            names = ac.ListAvailableSQLServers();
            string[] serverList = new string[names.Count];
            for (int i = 0; i < serverList.Length; i++)
            {
                serverList[i] = names.Item(i);
            }
            foreach (string str in serverList)
            {
                Console.WriteLine(str);
            }
            Console.ReadLine();
        }
    }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved