
888 Chapter 21: Administering Unity Programmatically
! Because a blank GUID is not considered valid and the stored procedure requires this
parameter, I am just passing in the ObjectID of the guy we are deleting to the
procedure here - this is not used by anything - this parameter should really be
optional.
oCommand.Parameters.Item("@CallerInputDestObjectID") =
oCommand.CreateParameter("CallerInputDestObjectID", adGUID, adParamInput, ,
strDeletedSubscriberObjectID)
! Arbitrarily pass in the type for call handler here (2) - again the stored proc
demands a value here but it is not used in this case
oCommand.Parameters.Item("@CallerInputDestObjectIDType") ...