ConnectionSettings.LoginSecure 属性

获取或设置 Boolean 属性,该属性指定是使用 Windows 身份验证还是 SQL Server 身份验证建立到服务器的连接。

命名空间:  Microsoft.SqlServer.Management.Common
程序集:  Microsoft.SqlServer.ConnectionInfo(在 Microsoft.SqlServer.ConnectionInfo.dll 中)

语法

声明
Public Property LoginSecure As Boolean 
    Get 
    Set
用法
Dim instance As ConnectionSettings 
Dim value As Boolean 

value = instance.LoginSecure

instance.LoginSecure = value
public bool LoginSecure { get; set; }
public:
property bool LoginSecure {
    bool get ();
    void set (bool value);
}
member LoginSecure : bool with get, set
function get LoginSecure () : boolean 
function set LoginSecure (value : boolean)

属性值

类型:Boolean
一个 Boolean 值,该值指定是使用 Windows 身份验证还是 SQL Server 身份验证建立到服务器的连接。如果为 True(默认值),则使用 Windows 身份验证建立与服务器的连接。如果为 False,则使用 SQL Server 身份验证建立与服务器的连接。

示例

'Declare a ServerConnection object variable to specify SQL authentication, login and password.
Dim conn As New ServerConnection
conn.LoginSecure = False
conn.Login = vlogin
conn.Password = vpassword
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server(conn)
'The actual connection is made when a property is retrieved.
Console.WriteLine(srv.Information.Version)
'The connection is automatically disconnected when the Server variable goes out of scope.

请参阅

参考

ConnectionSettings 类

Microsoft.SqlServer.Management.Common 命名空间

其他资源

连接到 SQL Server 实例