Class MySqlSchemaCollection
Represents a schema and its contents.
Inheritance
System.Object
MySqlSchemaCollection
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data.dll
Version: 9.1.0
Syntax
public class MySqlSchemaCollection
Constructors
MySqlSchemaCollection()
Declaration
public MySqlSchemaCollection()
MySqlSchemaCollection(DataTable)
Declaration
public MySqlSchemaCollection(DataTable dt)
Parameters
Type | Name | Description |
---|---|---|
System.Data.DataTable | dt |
MySqlSchemaCollection(String)
Declaration
public MySqlSchemaCollection(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Properties
Columns
Gets the list of columns in the schema.
Declaration
public IList<SchemaColumn> Columns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<SchemaColumn> |
Name
Gets or sets the name of the schema.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Rows
Gets the list of rows in the schema.
Declaration
public IList<MySqlSchemaRow> Rows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MySqlSchemaRow> |