-- *********************************************************************************************************** -- Codice da aggiungere : -- ADD YOUR CODE HERE exec INFOBIT_SP_Ring_TransactionNotification @object_type, @transaction_type, @num_of_cols_in_key, @list_of_key_cols_tab_del, @list_of_cols_val_tab_del, @error out, @error_message out -- *********************************************************************************************************** -- ****************************************************************************************************************** -- ESEMPIO DI [dbo].[SBO_SP_TransactionNotification] CON LA CHIAMATA ALLA INFOBIT_SP_Ring_TransactionNotification ** -- ****************************************************************************************************************** set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER proc [dbo].[SBO_SP_TransactionNotification] @object_type nvarchar(20), -- SBO Object Type @transaction_type nchar(1), -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose @num_of_cols_in_key int, @list_of_key_cols_tab_del nvarchar(255), @list_of_cols_val_tab_del nvarchar(255) AS begin -- Return values declare @error int -- Result (0 for no error) declare @error_message nvarchar (200) -- Error string to be displayed select @error = 0 select @error_message = N'Ok' -------------------------------------------------------------------------------------------------------------------------------- -- ADD YOUR CODE HERE exec INFOBIT_SP_Ring_TransactionNotification @object_type, @transaction_type, @num_of_cols_in_key, @list_of_key_cols_tab_del, @list_of_cols_val_tab_del, @error out, @error_message out -------------------------------------------------------------------------------------------------------------------------------- -- Select the return values select @error, @error_message end