Share via


SqliteConnection.GetSchema Method

Definition

Overloads

Name Description
GetSchema()

Returns schema information for the data source of this connection.

GetSchema(String)

Returns schema information for the data source of this connection.

GetSchema(String, String[])

Returns schema information for the data source of this connection.

GetSchema()

Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs

Returns schema information for the data source of this connection.

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

Returns

Schema information.

Applies to

GetSchema(String)

Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs

Returns schema information for the data source of this connection.

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

Parameters

collectionName
String

The name of the schema.

Returns

Schema information.

Applies to

GetSchema(String, String[])

Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs
Source:
SqliteConnection.cs

Returns schema information for the data source of this connection.

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

Parameters

collectionName
String

The name of the schema.

restrictionValues
String[]

The restrictions.

Returns

Schema information.

Applies to