我是VC ++(mfc)应用程序开发的新手。并且通常会出现with table1 as
(
select im.spl_instr_code_1 as LW, sum(pt.nbr_units/im.std_sub_pack_qty) as "Received Units"
from prod_trkg_tran pt, item_master im, po_hdr po
where pt.sku_id = im.sku_id AND pt.ref_field_2 = po.po_nbr AND po.ref_field_2='N'
AND pt.create_date_time between to_date('2015-12-29 06:00:00','yyyy-mm-dd hh24:mi:ss')
and to_date('2015-12-29 14:30:00','yyyy-mm-dd hh24:mi:ss')
and pt.module_name = 'Receiving'
group by im.spl_instr_code_1
)
select * from table1
where LW<30
union all
select 'NEW_GROUP' as LW,sum("Received Units") as "Received Units"
from table1
where LW >=30
错误,并且在该程序停止工作之后。唯一的解决方案是我必须关闭应用程序(Visual Studio 2010)并重新打开它。
我的代码是否可能出错?我无法使应用程序完美无缺或我的机器出现故障? 问题太愚蠢,但我很抱歉。
用Google搜索了这个问题并尝试了许多解决方案,但除了我之前提到的以外,根本不适用于我。
任何帮助都会很明显。我对这个问题很生气。 :(
我也试图在发布模式下启动我的项目,但它会要求我重新启动VS2010。 根本不适合我,我的合作伙伴根本没有收到这个错误。我已经在他们的PC上运行我的应用程序,并且没有在他们的PC上出现错误。怎么办?
我尝试过的解决方案。
LNK1168