GetSchema Method (String)

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
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.8.4.0

Syntax

C#
public override DataTable GetSchema(
	string collectionName
)
Visual Basic
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