Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SqlConnectionStringBuilder::Password Property

 

Gets or sets the password for the SQL Server account.

Namespace:   System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

public:
property String^ Password {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The value of the Password property, or String.Empty if none has been supplied.

Exception Condition
ArgumentNullException

The password was incorrectly set to null. See code sample below.

This property corresponds to the "Password" and "pwd" keys within the connection string.

If Password has not been set and you retrieve the value, the return value is Empty. To reset the password for the connection string, pass null to the Item property.

The following example shows how to set Password.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft