Requirement: ServerName and InstanceName to be displayed in a ToolPart
Data: The classes required to retrieve the DataSource(this contains the server name and instance name used in the connection string) using ASP.NET are,
SqlConnection, SqlCommand
Solution:
public string RetrieveDataSource
{
get
{
SqlConnection sqlConnection = new SqlConnection(this.CurrentConnectionString); SqlCommand sqlCmd = new SqlCommand(); sqlConnection.Open();
sqlCmd.Connection = sqlConnection; return “Server Name :” + sqlCmd.Connection.DataSource;
}
}
Conclusion: The above code returns the DataSource in the following format “MyServerName\SQLInstanceName”
Discover more from QubitSage Chronicles
Subscribe to get the latest posts sent to your email.