[]
        
(Showing Draft Content)

C1.DataConnector.AdoNet.DbConnectionWrap-3.GetSchema

GetSchema Method

GetSchema()

Returns schema information for the data source of this DbConnection.

Declaration
public override DataTable GetSchema()
Returns
Type Description
DataTable
Overrides

GetSchema(string)

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

Declaration
public override DataTable GetSchema(string collectionName)
Parameters
Type Name Description
string collectionName

Specifies the name of the schema to return.

Returns
Type Description
DataTable

A DataTable that contains schema information.

Overrides

GetSchema(string, string[])

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

Declaration
public override DataTable GetSchema(string collectionName, string[] restrictionValues)
Parameters
Type Name Description
string collectionName

Specifies the name of the schema to return.

string[] restrictionValues

Specifies a set of restriction values for the requested schema.

Returns
Type Description
DataTable

A DataTable that contains schema information.

Overrides