次の方法で共有


SubscriptionField Class

サブスクリプション クラス スキーマ内のフィールドを表します。

名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)

構文

'宣言
Public NotInheritable Class SubscriptionField
    Inherits NamedSmoObject
public sealed class SubscriptionField : NamedSmoObject
public ref class SubscriptionField sealed : public NamedSmoObject
public final class SubscriptionField extends NamedSmoObject
public final class SubscriptionField extends NamedSmoObject

解説

SubscriptionField オブジェクトは、アプリケーション データベースに含まれるサブスクリプション テーブルの単一の列を定義します。このテーブルは、サブスクリプション管理インターフェイスによって生成されたサブスクリプション データを格納します。

Notification Services は、 SubscriberIDCreatedUpdated、および Enabled の各フィールドをサブスクリプション クラス スキーマに自動的に追加します。

フィールドを追加または削除した後、アプリケーションを更新すると、対応するサブスクリプション クラスが再作成されます。Notification Services は、既存のサブスクリプション テーブルの名前に "Old" を追加して名前を変更してから、新しいテーブルを作成します。以前のサブスクリプション テーブルのインデックスは、変更されずに残されます。

以前のサブスクリプション テーブルから新しいサブスクリプション テーブルにデータを転送するには、手動で転送する必要があります。詳細については、「アプリケーションの更新」を参照してください。

継承階層

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
       Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Nmo.SubscriptionField

使用例

次の例は、サブスクリプション フィールドを定義してサブスクリプション スキーマに追加する方法を示しています。

// Define a SubscriberLocale field that cannot be NULL
// Add the field to the end of the field collection
SubscriptionField subLocale = 
    new SubscriptionField(flightSubscriptions, "SubscriberLocale");
subLocale.Type = "nvarchar(10)";
subLocale.TypeModifier = "not null";
flightSubscriptions.SubscriptionFields.Add(subLocale);
' Define a SubscriberLocale field that cannot be NULL
' Add the field to the end of the field collection
Dim subLocale As SubscriptionField = _
    New SubscriptionField(flightSubscriptions, _
    "SubscriberLocale")
subLocale.Type = "nvarchar(10)"
subLocale.TypeModifier = "not null"
flightSubscriptions.SubscriptionFields.Add(subLocale)

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

SubscriptionField Members
Microsoft.SqlServer.Management.Nmo Namespace

その他の技術情報

サブスクリプション スキーマの定義
Schema/Fields の Field 要素 (ADF)