如何从控制台应用程序安全地连接到远程SQL

时间:2018-10-08 13:13:12

标签: c# sql-server database security

我编写了一个连接到远程SQL Server的简单控制台应用程序。该脚本是从我的计算机手动运行的。我想知道默认情况下是否通过网络安全地发送了连接字符串(用户+密码),或者我应该进行一些配置才能实现。

using (SqlCommand cmd = new SqlCommand(
            sqlCommand, new SqlConnection( @"Server=xxx;Database=xxx;User Id=xxx;Password=xxx;")))
        {

            cmd.Connection.Open();
             //To some work
            cmd.Connection.Close();
        }

亲切的问候

0 个答案:

没有答案