首先,我想就这篇文章的篇幅道歉。但我希望你能理解整个问题。
我必须合并三个数据集(dsGetForm
,dsmedication_details
和dsbroadband_details
),并在表格中显示结果。
有时dsbroadband_details
包含行,有时却不包含行。
这就是我现在用来合并数据集的内容。
if (dsGetForm != null && dsmedication_details != null && dsbroadband_details != null)
{
dsGetForm.Tables[0].Merge(dsmedication_details.Tables[0]);
dsGetForm.Tables[0].Merge(dsbroadband_details.Tables[0]);
}
else if (dsGetForm == null && dsmedication_details != null)
{
dsGetForm = dsmedication_details;
}
else if (dsGetForm == null && dsbroadband_details != null )
{
dsGetForm = dsbroadband_details;
}
问题是,当存储过程的结果为空时,用于填充数据集dsbroadband_details
的存储过程(SP)给出了此错误消息
错误消息:找不到表0。 描述:未处理的异常 在执行期间发生 当前的网络请求。请查看 堆栈跟踪以获取更多信息 关于错误和它在哪里 起源于代码。
异常详细信息: System.ServiceModel.FaultException`1 [System.ServiceModel.ExceptionDetail, System.ServiceModel,Version = 3.0.0.0, 文化=中性, 公钥= b77a5c561934e089]]: 找不到表0
这是我的存储过程
Alter Procedure dbo.OEA_SP_GET_BROADBAND (
@appid NUMERIC,
@clientid NUMERIC,
@Lang Varchar(10))
AS
SET nocount ON
BEGIN
declare @PIName as varchar(100)
declare @username as varchar(20)
declare @pform_id as varchar(20)
declare @pform_desc as varchar(100)
declare @userid varchar(20)
declare @msn tinyint
set @PIName=''
if exists(SELECT app_id from ext_well_new_programs (nolock) where app_id=@appid and new_prog_id='BB' and status='A')
begin
select @PIName=dbo.oea_fn_fetch_fullname(@appid,primary_msn,1,@lang,@clientID)
from app_application with (nolock)
where app_id = @appid
end
if @PIName <> ''
begin
select Distinct @username = dbo.oea_fn_fetch_caaname(prog.last_update_id, 30000)
from app_prog_submission prog (nolock)
where app_id = @appid
select @userid = user_id, @msn = primary_msn
from app_application (nolock)
where app_id = @appid
set @pform_id = 'learnmore'
set @pform_desc = 'Cash Back for Broadband at Home'
select @PIName as mem_name, @appid as app_id, @username as username, @pform_id as pform_id, @pform_desc as pform_desc, 0 as noncust, @userid as userid, @msn as msn
END
End
我认为,我需要在else
条件之后添加if @PIName <> ''
条件。
我的问题是其他条件应该是什么?
因为我只需要if @PIName <> ''
的select语句的值(在末尾)
当这个条件成立时,我有点混淆应该是什么呢?
非常感谢任何帮助。
答案 0 :(得分:1)
在我看来,有些情况下你的SP没有返回任何结果,因此没有“表0”。我宁愿构造一个@results内存表,在此表中插入数据(如果有的话)并在退出SP之前执行最终select mem_name, app_id, ... from @results
。或者实际返回结果集的任何其他SQL构造,甚至是空的。