[]
Returns schema information for the data source of this DbConnection.
public override DataTable GetSchema()
Type | Description |
---|---|
DataTable |
Returns schema information for the data source of this DbConnection using the specified string for the schema name.
public override DataTable GetSchema(string collectionName)
Type | Name | Description |
---|---|---|
string | collectionName | Specifies the name of the schema to return. |
Type | Description |
---|---|
DataTable | A DataTable that contains schema information. |
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.
public override DataTable GetSchema(string collectionName, string[] restrictionValues)
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. |
Type | Description |
---|---|
DataTable | A DataTable that contains schema information. |