I have developed an application, based on 7 winform. My database is on MS Access. I want to create one common single class for connection string, and to use it in all winforms. So that, i can avoid copying and pasting connection string in all forms. I have no idea how to do it.
How to make a connection string class?
10.1k Views Asked by AudioBubble At
3
There are 3 best solutions below
1

I usually use a class and a static member like @scottk, but I'll wrap a check for the DEBUG
preprocessor symbol so I can switch to a development database on debug builds. I also use OleDbConnectionStringBuilder
for readability, even though it really is overkill:
public static class ConnectionStrings
{
#if DEBUG
public static string DBName
{
get
{
OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder
{
DataSource = @"C:\devDB.mdb",
Provider = "Microsoft.Jet.Oledb.4.0"
};
return builder.ToString();
}
}
#else
public static string DBName
{
get
{
OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder
{
DataSource = @"C:\prodDB.mdb",
Provider = "Microsoft.Jet.Oledb.4.0"
};
return builder.ToString();
}
}
#endif
}
2

You can make a class with a static member and property.
public class Utils
{
private static string connectionString = "Data Source=localhost;Initial Catalog=YourDB; Integrated Security=true";
public static string ConnectionString
{
get
{
return connectionString;
}
set
{
connectionString = value;
}
}
}
Then you can access it like:
string connString = Utils.ConnectionString;
You can have your connection string in App.Config file
And then you can access it like:
See: How to: Add an Application Configuration File to a C# Project