首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

raiserror 没有起作用解决方案

2013-12-30 
raiserror 没有起作用if(@RC0)beginupdate dbo.tconsign_form set bf_code,bf_state0 where Ls_no@

raiserror 没有起作用
if(@RC<>0)
begin
update dbo.tconsign_form set bf_code='',bf_state=0 where Ls_no=@ls_no
insert into bf_baofu(ShippingNoteNumber,GenericFault) values(@ls_no,@GenericFault)
declare @cwxx varchar(50)
select @cwxx=dbo.[bf_fanhuicuowu](@RC)
--raiserror(@cwxx,16,1)--测试注释
raiserror('asdfasdf',16,1)--测试注释
return(1)

end


界面没弹出来,我测试过确实进入了这段代码
你应该CATCH到Excption然后再应用程序段用比如MesageBox之类的显示抓到的Exception。

热点排行