AccessDataSourceDesigner.GetConnectionString 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 디자이너와 관련된 컨트롤에 유효한 디자인 타임 연결 문자열을 가져옵니다.
protected:
override System::String ^ GetConnectionString();
protected override string GetConnectionString ();
override this.GetConnectionString : unit -> string
Protected Overrides Function GetConnectionString () As String
반환
관련된 String에 대한 디자인 타임 연결 문자열이 들어 있는 AccessDataSource입니다.
예제
다음 코드 예제를 사용 하는 방법을 보여 줍니다 합니다 GetConnectionString 와 연결 된 Microsoft Access 데이터베이스의 연결 문자열을 표시 하는 메서드는 AccessDataSource 디자인 타임에 컨트롤 자리 표시자에서 컨트롤입니다.
이 코드 예제는에 대해 제공 된 큰 예제의 일부는 AccessDataSourceDesigner 클래스입니다.
// Generate design time markup.
public override string GetDesignTimeHtml()
{
// Generate a design-time placeholder containing the
// DataFile and the ConnectionString properties.
// Split the ConnectionString into segments so it doesn't make
// placeholder too wide.
string[] connectParts = GetConnectionString().Split(new char[] { ';' });
string connectString = " " + connectParts[0];
for (int i = 1; i < connectParts.Length; i++)
connectString += ";<br> " + connectParts[i].Trim();
return CreatePlaceHolderDesignTimeHtml(
"DataFile: " + DataFile + "<br />" +
"Connection string:<br />" + connectString);
}
' Generate design time markup.
Public Overrides Function GetDesignTimeHtml() As String
' Generate a design-time placeholder containing the
' DataFile and the ConnectionString properties.
' Split the ConnectionString into segments so it doesn't make
' placeholder too wide.
Dim connectParts() As String
connectParts = GetConnectionString().Split((";").ToCharArray())
Dim connectString As String
connectString = " " & connectParts(0)
Dim i As Integer
For i = 1 To connectParts.Length - 1
connectString &= ";<br> " & connectParts(i).Trim()
Next
Return CreatePlaceHolderDesignTimeHtml( _
"DataFile: " & DataFile & "<br />" & _
"Connection string:<br />" & connectString)
End Function
설명
GetConnectionString 메서드 maps는 DataFile 디자이너 사이트를 선택한 다음 사용 하 여 컨트롤의 속성을 ConnectionString 연결 문자열을 생성 하려면 컨트롤의 속성입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET