test.cs

来自「This articles shows how to retrieve a li」· CS 代码 · 共 37 行

CS
37
字号
using System;
using Util;

namespace SqlServerTest
{
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class Class1
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
            SqlServerInfo[] servs = SqlServerInfo.Seek();
            foreach(SqlServerInfo serv in servs)
            {
                Console.WriteLine(serv);

                // For this to display the Catalogs,
                // You must be able to connect using 
                // Integrated (Windows) Security.
                // If not, fill in the following lines:
                // serv.UserId = "......";
                // serv.Password = ".....";
                foreach(string catalog in serv.Catalogs)
                {
                    Console.WriteLine("\t{0}", catalog);
                }
            }

        }
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?