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)
설명
이렇게 sqlConnectionString
특성은 필요한 Mode 로 설정 된 SQLServer합니다.
참고
사용 하 여 SQLServer 세션 상태 모드 InstallSqlState.sql SQL 스크립트를 실행 해야 합니다 (에서 설치 되는 [드라이브:] \WINDOWS\Microsoft.NET\Framework\VersionNumber 기본.NET Framework 설치의 일부로) 컴퓨터의 SQL Server가 실행 됩니다는 세션 상태를 저장 합니다. 새 저장된 프로시저를 사용 하 여 ASPState 라는 데이터베이스를 만들고 TempDB 데이터베이스에 새 ASPStateTempApplications 및 ASPStateTempSessions 테이블을 만듭니다.