Schemas プロパティ

Schema オブジェクトのコレクションを表します。各 Schema オブジェクトは、データベースで定義されたスキーマを表します。

名前空間:  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
データベースで定義されたすべてのスキーマを表す SchemaCollection オブジェクト。

説明

このコレクションを使用し、スキーマ名を指定することによって、特定のスキーマを参照できます。新しいスキーマをコレクションに追加するには、スキーマ コンストラクター 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