Свойство Schemas
Represents a collection of Schema objects. Each Schema object represents a schema defined on the database.
Пространство имен: Microsoft.SqlServer.Management.Smo
Сборка: Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)
Синтаксис
'Декларация
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(Schema))> _
Public ReadOnly Property Schemas As SchemaCollection
Get
'Применение
Dim instance As Database
Dim value As SchemaCollection
value = instance.Schemas
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Schema))]
public SchemaCollection Schemas { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(Schema))]
public:
property SchemaCollection^ Schemas {
SchemaCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Schema))>]
member Schemas : SchemaCollection
function get Schemas () : SchemaCollection
Значение свойства
Тип Microsoft.SqlServer.Management.Smo. . :: . .SchemaCollection
A SchemaCollection object that represents all the schemas defined on the database.
Замечания
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.
Примеры
'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