C # lists the available SQL Server servers in the Local area network (cont.) _ Basic Application

Source: Internet
Author: User

Using System;
Using SYSTEM.DATA.SQL;
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);
//}

Sqldatasourceenumerator instance =sqldatasourceenumerator.instance;
System.Data.DataTable table = instance. Getdatasources ();

Displaydata (table);

Console.ReadLine ();
}

private static void Displaydata (System.Data.DataTable table)
{
foreach (System.Data.DataRow row in table). Rows)
{
Console.WriteLine ("Server name = {0}", row["ServerName"]);
Console.WriteLine ("Instance name = {0}", row["instancename"]);
Console.WriteLine ("Integration validation = {0}", row["isclustered"]);//Windows Authentication and SQL Server Authentication
Console.WriteLine ("Version = {0}", "row["]);//8.* is SQL 2000,9.* is SQL 2005
Console.WriteLine ("============================");
}
}
}
}

Article references from:
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.