SessionStateSection.SqlConnectionString 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 SQL 連接字串。
public:
property System::String ^ SqlConnectionString { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("sqlConnectionString", DefaultValue="data source=localhost;Integrated Security=SSPI")]
public string SqlConnectionString { get; set; }
[<System.Configuration.ConfigurationProperty("sqlConnectionString", DefaultValue="data source=localhost;Integrated Security=SSPI")>]
member this.SqlConnectionString : string with get, set
Public Property SqlConnectionString As String
屬性值
SQL 連接字串。 其預設值為泛型字串:"data source=127.0.0.1;Integrated Security=SSPI"
- 屬性
範例
下列程式碼範例示範如何取得 SqlConnectionString 屬性。 請參閱類別主題中的 SessionStateSection 程式碼範例,以瞭解如何存取 SessionStateSection 物件。
// Display the current SqlConnectionString property value.
Console.WriteLine("SqlConnectionString: {0}",
sessionStateSection.SqlConnectionString);
' Display the current SqlConnectionString property value.
Console.WriteLine("SqlConnectionString: {0}", _
sessionStateSection.SqlConnectionString)
備註
當 設定為 SQLServer 時 Mode ,需要這個 sqlConnectionString
屬性。
注意
若要使用 SQLServer 會話狀態模式,您必須執行 InstallSqlState.sql SQL 腳本, (安裝于 [drive:]\WINDOWS\Microsoft.NET\Framework\VersionNumber中,作為預設安裝.NET Framework安裝) 的一部分,該腳本會儲存會話狀態的電腦上執行SQL Server。 這會使用新的預存程式建立名為 ASPState 的資料庫,並在 TempDB 資料庫中建立新的 ASPStateTempApplications 和 ASPStateTempSessions 資料表。