MySqlConnection.GetSchema Method (String)

MySQL Connector/Net

MySqlConnectionGetSchema Method (String)
Returns schema information for the data source of this DbConnection using the specified string for the schema name.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public override DataTable GetSchema(
	string collectionName
)
Public Overrides Function GetSchema ( 
	collectionName As String
) As DataTable
public:
virtual DataTable^ GetSchema(
	String^ collectionName
) override
abstract GetSchema : 
        collectionName : string -> DataTable 
override GetSchema : 
        collectionName : string -> DataTable 

Parameters

collectionName
Type: SystemString
Specifies the name of the schema to return.

Return Value

Type: DataTable
A DataTable that contains schema information.
See Also