Click here to Skip to main content
Click here to Skip to main content

SQL Server Network Instance Detector

By , 7 Nov 2007
 

What is it?

Screenshot - MainImage.jpg

Control used in a sample application

Screenshot - Password.jpg

You have to give a username and password to retrieve all hosted databases. Note: SQL_Detect_dll.zip is the assembly containing the SQLServersDetector control. SQL_Detect_source.zip contains the source code of the control, along with a sample application using the control.

Introduction

It's a simple window control that can load all of the SQL Server instances in your local network and then load all of the databases on the selected server. I used SqlDataSourceEnumerator to load servers from the network.

Background

I was writing code in C# that was related to the manipulation of data with more than one database. I found that it was difficult for a user to type the address of a server and database into the text input fields and then connect to them for further manipulation because there is always the chance of the sever name or path being misspelled. If a user by mistake inputs the wrong spelling of the server or database name and then clicks connect, it takes a long time to decide that the path is not valid and throw an exception. Then the user has to to check the spelling again and give the input again, which I think is always irritating. So, I decided to detect the server instances automatically and load databases from the server and so on...

Using the Control

The control is easy to use, as is any other Windows control in .NET. You just have to add a reference of the DLL that is provided with this article. Alternatively, add the project to your solution and add a reference of the project SqlServersDetector to your project. Then the control will appear in your Toolbox just like this.

Screenshot - Toolbox.jpg

Now you can simply drag and drop it onto your form.

Properties of the Control

You can use the following properties of the control if you need them.

//Property to get the connection string that is created 
//by using selected server, selected database, username and password.
lblConnectionString.Text = sqlServersDetector1.DBConnectionString;

//Property to get or set the text that is displayed on 
//upper left corner of the control
sqlServersDetector1.MainLabel = "All Servers";

//Property to get or set the text that of the label 
//against Servers combo box.
sqlServersDetector1.ServersLabel = "Servers";

//Property to get or set the text that of the label 
//against Databases combo box.
sqlServersDetector1.DatabasesLabel = "Database";

//Property to get the selected server instance.
string server = sqlServersDetector1.SelectedServer;

//Property to get the selected database.
string database = sqlServersDetector1.SelectedDatabase;

Using the Example Solution Provided with the Article

If any beginner doesn't know how to use the solution, just download the ZIP file SQL_Detect_source.zip and unzip it. Then open the SQLServerDetectionControl.sln solution file and run the project named TestAppForSQLServerControl. If you are still facing problems using this control, then feel free to ask.

History

  • 7 November, 2007 -- Original version posted

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Syed Mujtaba Hassan
Software Developer
Pakistan Pakistan
Syed Mujtaba Hassan
Software Engineer
Intelligentsia Software (Pvt) Ltd Islamabad Pakistan.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5mvpKanasz Robert24-Sep-12 5:59 
Generalreference file !membersidra yaseen26-Aug-08 18:12 
GeneralRe: reference file !memberSyed Mujtaba Hassan26-Aug-08 18:45 
GeneralProb with VS 2008, SQL 2008 both SP1, .NET 3.5 SP1 [modified]memberBrian Hart16-Aug-08 18:28 
GeneralRe: Prob with VS 2008, SQL 2008 both SP1, .NET 3.5 SP1memberpvandijk281-Sep-08 23:40 
GeneralRe: Prob with VS 2008, SQL 2008 both SP1, .NET 3.5 SP1memberpvandijk281-Sep-08 23:53 
GeneralLimitations...memberTor2k11-Feb-08 15:37 
GeneralRe: Limitations...memberSyed Mujtaba Hassan11-Feb-08 18:24 
Generalproblem retrieving instance namesmemberFarhan Ali4-Dec-07 21:10 
GeneralRe: problem retrieving instance namesmemberSyed Mujtaba Hassan10-Dec-07 1:43 
GeneralLimitationmemberAshutosh Bhawasinka17-Nov-07 10:48 
GeneralAlso NetServerEnum...memberCristian Amarie14-Nov-07 7:09 
QuestionAny problems like this one?membermichaeldjackson13-Nov-07 5:38 
AnswerRe: Any problems like this one?memberSyed Mujtaba Hassan13-Nov-07 22:25 
GeneralRe: Any problems like this one?membermichaeldjackson14-Nov-07 4:21 
GeneralRe: Any problems like this one?memberSyed Mujtaba Hassan14-Nov-07 4:49 
GeneralRe: Any problems like this one?membermichaeldjackson14-Nov-07 6:39 
GeneralRe: Any problems like this one?memberSyed Mujtaba Hassan14-Nov-07 17:12 
GeneralRe: Any problems like this one?membermichaeldjackson15-Nov-07 3:25 
GeneralintrestingmemberMichMsk8-Nov-07 2:18 
GeneralRe: intrestingmemberSyed Mujtaba Hassan8-Nov-07 17:20 
GeneralGood effortmemberiamhaider7-Nov-07 22:23 
GeneralVery handy ControlmemberFaheem A Saleem7-Nov-07 17:19 
GeneralThis is quite coolmemberFrank Kerrigan7-Nov-07 11:45 
GeneralRe: This is quite coolmemberSyed Mujtaba Hassan7-Nov-07 17:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130619.1 | Last Updated 7 Nov 2007
Article Copyright 2007 by Syed Mujtaba Hassan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid