我编写了一个连接到远程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();
}
亲切的问候