Question Security of clear text connection string

pisceswzh

Well-known member
Joined
Mar 19, 2007
Messages
96
Programming Experience
1-3
Hi,

In my program, I use the following connection string to connect my windows form program to the SQL server. Since I believe the program communicates with the server using clear text, I am just wondering if it is possible that the password for the SQL server be intercepted. If so, how can I prevent it from happening?

Thanks.

My connection string:
VB.NET:
Server = 222.102.22.4; Database = myDB; User Id = sa; Password = 123ABC123abc
 
Back
Top