Advantage Client Engine
Delete a subscription object from the database.
UNSIGNED32 AdsDDDeleteSubscription( ADSHANDLE hDictionary,
UNSIGNED8 *pucSubscriptionName );
hDictionary (I) |
Handle of a database connection. |
pucSubscriptionName (I) |
Name of the subscription object to delete. |
AE_INVALID_OBJECT_NAME |
The subscription specified by pucSubscriptionName cannot be located in the data dictionary. |
AdsDDDeleteSubscription removes an existing subscription from the database.
Note This function can be called inside a transaction, but will not be part of the transaction. Any changes it makes cannot be rolled back.
ulRetVal = AdsDDDeleteSubscription( hConn, "mysub" );
See Also