se for somente esse o problema ta aqui a query pra vc
soh executar a query no lin2world (responde aqui se der certo, se naum der posta o erro novamente)
code:
CREATE PROCEDURE [dbo].[lin_SaveCastleStatus]
AS
SELECT 0
GO
ALTER PROCEDURE [DBO].[lin_SaveCastleStatus]
(
@status int,
@castle_id int
)
AS
SET NOCOUNT ON
UPDATE castle SET status = @status WHERE id = @castle_id
GO
|