C # gets all DB instance names for the specified IP address database

Source: Internet
Author: User

/// <summary>        ///Gets the database instance name for the specified IP address for all databases. /// </summary>        /// <param name= "IP" >the specified IP address. </param>        /// <param name= "username" >the user name of the login database. </param>        /// <param name= "password" >the password for the login database. </param>        /// <returns>Returns a list that contains the data instance name. </returns>        PrivateArrayList Getalldatabase (stringIpstringUsernamestringpassword) {ArrayList dbnamelist=NewArrayList (); SqlConnection Connection=NewSqlConnection (String.Format ("Data source={0};initial Catalog = master; User ID = {1}; PWD = {2}", IP, username, password)); DataTable dbnametable=NewDataTable (); SqlDataAdapter Adapter=NewSqlDataAdapter ("select name from Master. sysdatabases", Connection); Lock(Adapter) {Adapter.fill (dbnametable); }            foreach(DataRow rowinchdbnametable.rows) {dbnamelist.add (row["name"]);            } connection.close (); returndbnamelist; }

C # gets all DB instance names for the specified IP address database

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.