C # lists the available SQL Server servers in the local area network _mysql

Source: Internet
Author: User
Tags microsoft sql server

SQLDMO is provided by Microsoft SQL Server's SQLDMO.dll, and since SQLDMO.dll is a COM object, you must add a reference to it in the. NET project before you use it. Note To add a COM reference, locate the Microsoft SQLDMO Object Library in the list (possible path: System letter: \program Files\Microsoft SQL Server\80\tools\binn\ Sqldmo.dll), and then click OK to add the reference.
The following is a class written in the C # language to enumerate the Microsoft SQL Servers available in the local area network:

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 ();
}
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.