I'm using the following connection string to connect from my windows app to SQL Server database that located on a WebSite:
dim constr As String = "data source=IPAdresse;initial catalog=mydb;User Id=username;Password=pwd
is this way of connection secure?
Should I use (https://) before writing the IP address in the connection string?
If not, how can I make my connection secure and unavailable to hackers?
how can I make my connection secure and unavailable to hackers?in short you can make it more secure but never unavailable to hackers. There's other ways beside just a connection...