Adds a SubscriptionField at the end of the SubscriptionFieldCollection object.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
Public Sub Add ( _
subscriptionField As SubscriptionField _
)
public void Add (
SubscriptionField subscriptionField
)
public:
void Add (
SubscriptionField^ subscriptionField
)
public void Add (
SubscriptionField subscriptionField
)
public function Add (
subscriptionField : SubscriptionField
)
매개 변수
- subscriptionField
The SubscriptionField to add to the collection.
주의
If you add a field to a deployed application, updating the instance re-creates the subscription class to which it corresponds. A new subscription table is created, and the existing subscription tables are renamed by appending "Old" to the table names. Existing subscription table indexes are left unchanged.
Use the Update method to update the instance.
예
The following examples show how to define a subscription field and add it to the end of the collection of subscription fields:
// 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)
스레드 보안
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.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
SubscriptionFieldCollection Class
SubscriptionFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace