MySQL Connector/Net
MySqlConnectionGetSchema Method (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.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9

public override DataTable GetSchema( string collectionName, string[] restrictionValues )
Public Overrides Function GetSchema ( collectionName As String, restrictionValues As String() ) As DataTable
public: virtual DataTable^ GetSchema( String^ collectionName, array<String^>^ restrictionValues ) override
abstract GetSchema : collectionName : string * restrictionValues : string[] -> DataTable override GetSchema : collectionName : string * restrictionValues : string[] -> DataTable
Parameters
- collectionName
- Type: SystemString
Specifies the name of the schema to return. - restrictionValues
- Type: SystemString
Specifies a set of restriction values for the requested schema.
Return Value
Type: DataTableA DataTable that contains schema information.
