我的金伯利进程是
SET @query= UPDATE +@tbl+ SET auth_Date= +@authDate+
,authorized_By_ID=@AuthID
,authorized=1 WHERE +@col+ =@Id;
IF(@@ERROR=0) SET @reVal=1 ELSE SET @reVal=-1
EXECUTE sp_executesql @query, N @reVal int OUTPUT ,
@reVal,N @AuthID int ,@AuthID,N @Id int ,@Id
页: 1
1) How can I pass arguments .
2) There is an error is coming
Conversion failed when converting
date and/or time from character string.