C# - How to safely store my ConnectionString

4.7k Views Asked by At

In my application I'm currently saving the connection string to the following area:

Properties.Settings.Default.ConnectionString();

However I realized that this is bad practice since the connection string can be viewed by the user. I searched around the internet and most answers recommended to save the connection string in my app.config file, however the user can still see the connection string so it's still not safe. I thought about setting my connection string to a string and declaring it every time I startup my program but that seems inefficient.

What is the safest way to save my connection string in order to hide it from the user ? Thank you.

Edit: this is the connection string:

Server=server.com;PORT=3306;Database=db_user;Uid=admin;Pwd=test;
2

There are 2 best solutions below

0
On BEST ANSWER

What you can do is: Encrypt the connection string in the config file and decrypt it before establishing the DB connection. There is a nice answer of how to do this here: Encrypting & Decrypting a String in C#

0
On

how about if you store the connection elements like (server name, db name , user and pass) in the settings of the projects properties.