SqlConnection.DataSource 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결할 SQL Server 인스턴스의 이름을 가져옵니다.
public:
virtual property System::String ^ DataSource { System::String ^ get(); };
public:
property System::String ^ DataSource { System::String ^ get(); };
public override string DataSource { get; }
[System.Data.DataSysDescription("SqlConnection_DataSource")]
public string DataSource { get; }
[System.ComponentModel.Browsable(true)]
public override string DataSource { get; }
member this.DataSource : string
[<System.Data.DataSysDescription("SqlConnection_DataSource")>]
member this.DataSource : string
[<System.ComponentModel.Browsable(true)>]
member this.DataSource : string
Public Overrides ReadOnly Property DataSource As String
Public ReadOnly Property DataSource As String
속성 값
연결할 SQL Server instance 이름입니다. 기본값은 빈 문자열입니다.
- 특성
예제
다음 예제에서는 을 SqlConnection 만들고 해당 읽기 전용 속성 중 일부를 표시합니다.
private static void OpenSqlConnection(string connectionString)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
Console.WriteLine("ServerVersion: {0}", connection.ServerVersion);
Console.WriteLine("DataSource: {0}", connection.DataSource);
}
}
Private Sub OpenSqlConnection(ByVal connectionString As String)
Using connection As New SqlConnection(connectionString)
connection.Open()
Console.WriteLine("ServerVersion: {0}", connection.ServerVersion)
Console.WriteLine("DataSource: {0}", connection.DataSource)
End Using
End Sub
설명
참고
DataSource 에 대한 SqlConnection 연결 문자열 "context connection=true"이면 속성이 반환 null
됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET