Server.ConnectionContext Property
Gets the current server connection details for the instance of SQL Server.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
abstract ConnectionContext : ServerConnection with get override ConnectionContext : ServerConnection with get
Property Value
Type: Microsoft.SqlServer.Management.Common.ServerConnectionA ServerConnection object that specifies the details of the current connection to the instance of SQL Server.
Implements
IAlienRoot.ConnectionContextThis property can be used to change connection settings, such as the name of the instance of SQL Server or the authentication type. The ConnectionContext property is represented by the ServerConnection class. When connecting to the local instance of SQL Server by using Windows Authentication, the default values are used. You do not have to set any properties.
C#
Server srv = new Server("(local)"); ServerConnection conContext = new ServerConnection(); conContext = srv.ConnectionContext; conContext.LoginSecure = false; conContext.Login = vlogin; conContext.Password = vpassword; Server srv2 = new Server(conContext);
PowerShell
$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)") $conContext = $srv.ConnectionContext $conContext.LoginSecure = $FALSE $conContext.Login = vlogin $conContext.Password = vpassword $srv2 = new-object Microsoft.SqlServer.Management.Smo.Server($conContext)
Show: