GetSchema Method (String)

MySQL Connector/Net

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.2.2.0

Syntax

C#
public override DataTable GetSchema(
	string collectionName
)
Visual Basic (Declaration)
Public Overrides Function GetSchema ( _
	collectionName As String _
) As DataTable
Visual C++
public:
virtual DataTable^ GetSchema(
	String^ collectionName
) override

Parameters

collectionName
Type: System..::.String
Specifies the name of the schema to return.

Return Value

A DataTable that contains schema information.

See Also