다음을 통해 공유


SqliteConnection.GetSchema 메서드

정의

오버로드

GetSchema()

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

GetSchema(String)

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

GetSchema(String, String[])

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

GetSchema()

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

public override System.Data.DataTable GetSchema ();
override this.GetSchema : unit -> System.Data.DataTable
Public Overrides Function GetSchema () As DataTable

반환

스키마 정보입니다.

적용 대상

GetSchema(String)

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

public override System.Data.DataTable GetSchema (string collectionName);
override this.GetSchema : string -> System.Data.DataTable
Public Overrides Function GetSchema (collectionName As String) As DataTable

매개 변수

collectionName
String

스키마의 이름입니다.

반환

스키마 정보입니다.

적용 대상

GetSchema(String, String[])

이 conneciton의 데이터 원본에 대한 스키마 정보를 반환합니다.

public override System.Data.DataTable GetSchema (string collectionName, string?[] restrictionValues);
override this.GetSchema : string * string[] -> System.Data.DataTable
Public Overrides Function GetSchema (collectionName As String, restrictionValues As String()) As DataTable

매개 변수

collectionName
String

스키마의 이름입니다.

restrictionValues
String[]

제한 사항입니다.

반환

스키마 정보입니다.

적용 대상