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[]

限制。

返回

架构信息。

适用于