Прочетете на английски Редактиране

Споделяне чрез


OdbcConnection.GetSchema Method

Definition

Returns schema information for the data source of this OdbcConnection.

Overloads

GetSchema()

Returns schema information for the data source of this OdbcConnection.

GetSchema(String)

Returns schema information for the data source of this OdbcConnection using the specified name for the schema name.

GetSchema(String, String[])

Returns schema information for the data source of this OdbcConnection using the specified string for the schema name and the specified string array for the restriction values.

GetSchema()

Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs

Returns schema information for the data source of this OdbcConnection.

C#
public override System.Data.DataTable GetSchema();

Returns

A DataTable that contains schema information.

See also

Applies to

.NET 10 (package-provided) и други версии
Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

GetSchema(String)

Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs

Returns schema information for the data source of this OdbcConnection using the specified name for the schema name.

C#
public override System.Data.DataTable GetSchema(string collectionName);

Parameters

collectionName
String

Specifies the name of the schema to return.

Returns

A DataTable that contains schema information.

Remarks

When collectionName is null, the DataTable contains information about all available metadata and any restrictions.

Бележка

All restrictions that apply to the SQLStatistics method also apply to the ODBCConnection.GetSchema("indexes") collection.

See also

Applies to

.NET 10 (package-provided) и други версии
Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

GetSchema(String, String[])

Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs
Source:
OdbcConnectionHelper.cs

Returns schema information for the data source of this OdbcConnection using the specified string for the schema name and the specified string array for the restriction values.

C#
public override System.Data.DataTable GetSchema(string collectionName, string?[]? restrictionValues);
C#
public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues);

Parameters

collectionName
String

Specifies the name of the schema to return.

restrictionValues
String[]

Specifies a set of restriction values for the requested schema.

Returns

A DataTable that contains schema information.

Remarks

When collectionName is specified as null, the DataTable contains information about all the metadata that is available, and its restrictions.

The restrictionValues parameter can supply n depth of values which are specified by the restrictions collection for a specific collection. In order to set values on a given restriction, and not set the values of other restrictions, you must set the preceding restrictions to null and then put the appropriate value in for the restriction that you would like to specify a value for.

An example of this is the "Tables" collection. If the "Tables" collection has three restrictions (database, owner, and table name), and you want to get back only the tables associated with the owner "Carl," then you would need to pass in at least the following values: null, "Carl". If a restriction value is not passed in, the default values are used for that restriction. This is the same mapping as passing in null, which is different from passing in an empty string for the parameter value. In that case, the empty string ("") is considered to be the value for the specified parameter.

Бележка

All restrictions that apply to SQLStatistics method will apply to the ODBCConnection.GetSchema("indexes") collection.

See also

Applies to

.NET 10 (package-provided) и други версии
Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)