- 论坛徽章:
- 0
|
SOS!版主求救啊!!!
if (lCount == 0)
{
/*取符合条件的欠费信息*/
/*正常情况时插dunowe_data*/
EXEC Sql
INSERT Into Dunowe_Data
(Dunowe_Id,
Staff_Id,
Area_Id,
Acct_Id,
Acc_Nbr,
Contact_Tel,
Cust_Name,
Social_Id,
Billing_Cycle_Id,
Balance,Charge,Due,
Cust_Address,
Created_Date,
Serv_State_Name,
Gen_Date,
Cycle_Month,
Dun_Serial_Nbr)
Values (Dunowe_Id_Seq.Nextval,
:sDunOweinfo->;lStaffID,
:sDunOweinfo->;iAreaID,
:lAcctID,
:sAccNbr,
:sContactTel,
:sCustName,
:sSocNbr,
:lBillCycID,
:lBalance,
:lCharge,
:lDue,
:sCustAddr,
:sCreDate,
get_serv_state(:sAccNbr),/*:sAccNbrState,*/
sysdate,
:lCycleMonth,
:sDunOweinfo->;iOweJobID);
if (sqlca.sqlcode != 0 )
{
ToLog("作业号:[%d]lAcctID=[%ld]--Insert Into Dunowe_Data出错,错误代码:[%d]\n",sDunOweinfo->;iOweJobID,lAcctID,sqlca.sqlcode);
continue ;
}
对应就是这个INSERT语句 |
|