Udostępnij przez


Database.Schemas Property

Represents a collection of Schema objects. Each Schema object represents a schema defined on the database.

Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, GetType(Schema))> _
Public ReadOnly Property Schemas As SchemaCollection
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(Schema))] 
public SchemaCollection Schemas { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, typeof(Schema))] 
public:
property SchemaCollection^ Schemas {
    SchemaCollection^ get ();
}
/** @property */
public SchemaCollection get_Schemas ()
public function get Schemas () : SchemaCollection

Property Value

A SchemaCollection object that represents all the schemas defined on the database.

Remarks

Specific schemas can be referenced by using this collection by specifying the name of the schema. To add a new schema to the collection, call the schema constructor Schema.

Example

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display all the schemas in the database.
Dim sc As Schema
For Each sc In db.Schemas
   Console.WriteLine(sc.Name)
Next

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.