spUpdate_ClientUserFailedAttempts

Parameters

Parameter Parameter Type Mode Description
@ClientUserID int IN
@FailedAttempts int IN

Definition

Copy


                CREATE PROCEDURE dbo.spUpdate_ClientUserFailedAttempts 
                    @ClientUserID int,
                    @FailedAttempts int
                AS
                BEGIN
                    SET NOCOUNT ON;
                    UPDATE dbo.ClientUsers SET NumFailedAttempts = @FailedAttempts WHERE ID = @ClientUserID;
                END