[]
Returns schema information for the data source of this DbConnection.
public override DataTable GetSchema()
Public Overrides Function GetSchema() As DataTable
| 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)
Public Overrides Function GetSchema(collectionName As String) As DataTable
| 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)
Public Overrides Function GetSchema(collectionName As String, restrictionValues As String()) As DataTable
| 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. |