SqlConnectionStringBuilder.Password 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 SQL Server 帳戶的密碼。
public:
property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
public string Password { get; set; }
member this.Password : string with get, set
Public Property Password As String
屬性值
Password 屬性的值,如未提供任何值,則為 String.Empty
。
例外狀況
不正確地設定密碼為 null。 請參閱以下的程式碼範例。
範例
下列範例示範如何設定 Password 。
using Microsoft.Data.SqlClient;
class Program
{
public static void Main()
{
SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder();
builder["Password"] = null;
string aa = builder.Password;
Console.WriteLine(aa.Length);
builder["Password"] = "??????";
aa = builder.Password;
Console.WriteLine(aa.Length);
try
{
builder.Password = null;
}
catch (ArgumentNullException e)
{
Console.WriteLine("{0}", e);
}
}
}
備註
此屬性會對應至連接字串內的 "Password" 和 "pwd" 索引鍵。
不建議設定此屬性。 為了維持高層級的安全性,強烈建議您改用 Integrated Security
或 Trusted_Connection
關鍵字。 SqlCredential是指定使用SQL Server驗證之連線的認證更安全的方式。
如果 Password 尚未設定,而且您擷取值,則傳回值為 Empty 。 若要重設連接字串的密碼,請將 null 傳遞至 Item 屬性。
密碼必須是 128 個字元或更少。