Creat Procedure xsupdate
@xh integer, @xm varchar(8),@zym varchar(10),@xb bit(1),@csrq smalldatetime(4),@bz text(16)
As
begin
update xs set
xm=@xm,zym=@zym,xb=@xb,csrq=@csrq,bz=@bz,
where xh=@xh
end
return
这段代码是更新表xs的 VB上说@xm 未定义,而且procedure附近有错
哪位知道 说一下 谢谢了哈 |