[]
        
(Showing Draft Content)

C1.DataConnector.AdoNet.C1ConnectionBase.GetSchema

GetSchema Method

GetSchema()

Returns schema information for the data source of this C1ConnectionBase.

Declaration
public override DataTable GetSchema()
Public Overrides Function GetSchema() As DataTable
Returns
Type Description
DataTable

A DataTable that contains schema information.

Overrides

GetSchema(string)

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

Declaration
public override DataTable GetSchema(string collectionName)
Public Overrides Function GetSchema(collectionName As String) As DataTable
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 C1ConnectionBase 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)
Public Overrides Function GetSchema(collectionName As String, restrictionValues As String()) As DataTable
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