Jump to content

Bid to get the shirts of the lads' backs


Day

Recommended Posts

If i could afford it i would bid ! :D - not £300 tho !

After paying for away tickets there is never much left in the kitty.

I just bid 200 quid for Teales shirt got email saying do you expect Teale to come with the shirt?

Link to comment
Share on other sites

  • Replies 39
  • Created
  • Last Reply

You don't know who the real David is, I could be the almost 50 year old woman with a 12 year old boyfriend or I could be the aussie with an allergic reaction to all things Red and Scottish. Then again I could be Matty the 18 year old fan with spikey hair which travels to every game and gets plastered. I'l let you decide

Link to comment
Share on other sites

USE DCFC Fans;

GO

-- Drop the procedure if it already exists.

IF OBJECT_ID(N'Vicky-27.usp_DeleteCandidate', N'P') IS NOT NULL

DROP PROCEDURE Vicky-27.usp_DeleteCandidate;

GO

-- Create the procedure.

CREATE PROCEDURE MattyTheRam.usp_DeleteCandidate

(

@CandidateID INT

)

AS

-- Execute the DELETE statement.

DELETE FROM Boycie.JobCandidate

WHERE JobCandidateID = @CandidateID;

-- Test the error value.

IF @@ERROR <> 0

BEGIN

-- Return 99 to the calling program to indicate failure.

PRINT N'An error occurred deleting the candidate information.';

RETURN 99;

END

ELSE

BEGIN

-- Return 0 to the calling program to indicate success.

PRINT N'The job candidate has been deleted.';

RETURN 0;

END;

GO

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...