Hello guys,
As we know that while interacting our SQL database to our C#.net or VB.net application we need to access the connectionstring of the SQL database. Once we access the connectionstring then we can use this to execute the SQL commands in our coding page. Now the question is when we have multiple forms in our desktop application we need to write the connectionstring on each window form to access the SQL database. So guys what to do to ignore this multiple writing of connectionstring on each form? To avoid this we use an app.config file into our desktop application as we use the web.config file in web application. As we describe our connectionstring once in this app.config file we can access this connectionstring multiple times on multiple forms from app.config file. in this article we will tell you the process to access this.
Step 1: First you need to define your ConnectionString in app.config file by using the following code:
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="SchoolManagement"
connectionString="Data Source=.;Initial Catalog=SchoolManagement;Integrated Security=True"/>
</connectionStrings>
</configuration>
Step 2: Now you must import the following namespaces in your form coding page
using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
Step 3: After defining the Connectionstring in the app.config file you need to use the following code to access the connectionstring:
var connectionString=ConfigurationManager.ConnectionStrings["SchoolManagement"].ConnectionString;
Development of software is only a single phase of overall system development. Coding is an important step on system development but maintaining the quality of software is also an important part and a challenging job. Proper testing is important for the good quality assurance. At present, there are different tools available for testing products. The tools like