Freigeben über


SubscriptionClass.SubscriptionChronicles Property

Gets the SubscriptionChronicleCollection for the SubscriptionClass.

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

Syntax

'Declaration
Public ReadOnly Property SubscriptionChronicles As SubscriptionChronicleCollection
public SubscriptionChronicleCollection SubscriptionChronicles { get; }
public:
property SubscriptionChronicleCollection^ SubscriptionChronicles {
    SubscriptionChronicleCollection^ get ();
}
/** @property */
public SubscriptionChronicleCollection get_SubscriptionChronicles ()
public function get SubscriptionChronicles () : SubscriptionChronicleCollection

Eigenschaftswert

The SubscriptionChronicleCollection for the SubscriptionClass.

Hinweise

Subscription chronicles, which are optional, store supplemental subscription data for use by your application.

Define individual subscription chronicles using the SubscriptionChronicle class.

Beispiel

The following examples show how to add a subscription chronicle to a subscription class:

// Define a chronicle for the subscription class
SubscriptionChronicle sc1 = new SubscriptionChronicle(
    flightSubscriptions, "FlightSubChronicle");
sc1.SqlStatements.Add(
    "CREATE TABLE MyAppSchema.FlightSubChronicle " + 
    " (SubscriptionId bigint, LeavingFrom nvarchar(6), " + 
    "  GoingTo nvarchar(6), Price float);");
sc1.SqlStatements.Add(
    "CREATE INDEX FlightSubChronicleIndex  " +
    " ON MyAppSchema.FlightSubChronicle " +
    " ( LeavingFrom, GoingTo );");
flightSubscriptions.SubscriptionChronicles.Add(sc1);
' Define a chronicle for the subscription class
Dim sc1 As SubscriptionChronicle = New SubscriptionChronicle( _
    flightSubscriptions, "FlightSubChronicle")
sc1.SqlStatements.Add( _
    "CREATE TABLE MyAppSchema.FlightSubChronicle " + _
    "(SubscriptionId bigint, LeavingFrom nvarchar(6), " + _
    "GoingTo nvarchar(6), Price float);")
sc1.SqlStatements.Add( _
    "CREATE INDEX FlightSubChronicleIndex  " + _
    "ON MyAppSchema.FlightSubChronicle " + _
    "( LeavingFrom, GoingTo );")
flightSubscriptions.SubscriptionChronicles.Add(sc1)

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

SubscriptionClass Class
SubscriptionClass Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Definieren von Verläufen für eine Abonnementklasse
Chronicles Element for SubscriptionClass (ADF)