- 论坛徽章:
- 0
|
- 写了一个ec的程序,编译的时候怎么老是提示如下啊:
- esqlc: "batch.ec", line 191: Error -33037: 'c_operateid' is not a component of record 'tab518'.
- esqlc: "batch.ec", line 297: Error -33037: 'int_acctid' is not a component of record 'tab387'.
- esqlc: "batch.ec", line 312: Error -33037: 'c_icpid' is not a component of record 'tab518'.
- esqlc: "batch.ec", line 326: Error -33037: 'si_type' is not a component of record 'tab365'.
- 程序如下:
- #include <sys/types.h>;
- #include <sys/stat.h>;
- #include <unistd.h>;
- #include <fcntl.h>;
- #include <stdio.h>;
- #include <errno.h>;
- #include <string.h>;
- #include <stdlib.h>;
- #include sqlca;
- #include datetime;
- #define ARGUC 8
-
- size_t readfile_aline(int fd,char buf[],const size_t charlen);
- int getIcpInfo(char icp[][65],const int count,char *buf);
- int insert387();
- int insert536();
- int insert365();
- void write_err(int errfd,char icpinfo[][65],int num);
- typedef struct gl_re_icpoperate
- {
- char c_operateid[6];
- char c_icpid[9];
- int si_type;
- datetime year to second dt_begin;
- datetime year to second dt_stop;
- char vc_name[65];
- char vc_connectno[21];
- char vc_port[21];
- char vc_provider[65];
- } D518;
- typedef struct yx_pf_acctdet
- {
- long int_acctid;
- long int_acctdetid;
- int si_acctstate;
- /*datetime year to second dt_starttime;
- datetime year to second dt_stoptime;
- char vc_acctname[33];*/
- }D387;
- /*typedef struct gl_re_icpacctdet
- {
- char c_icpid[9];
- char c_operateid[6];
- long int_acctid;
- long int_acctdetid;
- }D536;*/
- typedef struct zw_cbi_invitemacct
- {
- int si_type;
- /*si_type=2,bill*/
- long int_invitemid;
- /*long int int_acctid;
- long int int_acctdetid;*/
- int si_feekind;
- }D365;
- /*declare the global variable*/
- $struct D518 tab518;
- $struct D387 tab387;
- $struct D365 tab365;
- int main(int argc,char *argv[])
- {
- int fd,errfd,rec_count,i;
- char icpinfo[ARGUC][65];
- char buf[512],bufbak[512];
- if (argc!=2)
- {
- printf("parameter error!\n");
- return -1;
- }
- if((fd=open(argv[1],O_RDONLY))==-1)
- {
- printf("Open file Error\n Error No=%d\n",errno);
- return -1;
- }
- if((errfd=open("error.txt",O_WRONLY|O_TRUNC))==-1)
- {
- printf("Open errfile Error\n Error No=%d\n",errno);
- return -1;
- }
- while((long)readfile_aline(fd,buf,sizeof(buf))>;0L)
- {
- printf("the buf is:%s\n",buf);
- strcpy(bufbak,buf);
- if(getIcpInfo(icpinfo,ARGUC,buf)!=-1)
- /*split the icpinfo string read from the datafile*/
- {
- insert_db(errfd,icpinfo);
- }
- else
- write(errfd,bufbak,strlen(bufbak));
- }
- close(fd);
- close(errfd);
- }
- int insert_db(int errfd,char icpinfo[][65])
- {
-
- /*init the parameter*/
- strcpy(tab518.c_operateid,icpinfo[1]);
- strcpy(tab518.c_icpid,icpinfo[2]);
- tab518.si_type=0;
- dtcvasc("2099-12-31 23:59:59",&tab518.dt_stop);
- dtcurrent(&tab518.dt_begin);
- strcpy(tab518.vc_name,icpinfo[3]);
- tab387.si_acctstate=1;
- tab365.si_type=2;
-
- $database kkkkk;
- $begin work;
- /*insert D518*/
- $insert into gl_re_icpoperate(c_operateid,c_icpid,si_type,---line191
- dt_begin,dt_stop,vc_name,vc_connectno,vc_port,vc_provider)
- values(:tab518.c_operateid,:tab518.c_icpid,:tab518.si_type,
- :tab518.dt_begin,:tab518.dt_stop,:tab518.vc_name,
- :tab518.vc_connectno,:tab518.c_port,:tab518.vc_provider);
- if(SQLCODE)
- {
- printf("the sqlcode=%ld\n",SQLCODE);
- $rollback work;
- write_err(fd,icpinfo,8);
- return -1;
- }
- if(strcmp(icpinfo[0],"gaa")!=0)
- {
- }
- else if(strcmp(icpinfo[0],"gic")!=0)
- {
- }
- else
- write_err(fd,icpinfo,7);
- $commit work;
- }
- int insert387()
- {
- /*insert D387*/
- $insert into yx_pf_acctdet(int_acctid,int_acctdetid,---line 297
- si_acctstate,dt_starttime,dt_stoptime,vc_acctname)
- values(:tab387.int_acctid,:tab387.int_acctdetid,
- :tab387.si_acctstate,:tab518.dt_begin,:tab518.dt_stop,:tab518.vc_name);
- if(SQLCODE)
- {
- printf("the sqlcode=%ld\n",SQLCODE);
- return -1;
- }
- else
- return 0;
- }
- int insert536()
- {
- /*insert D536*/
- $insert into gl_re_icpacctdet(c_icpid,c_operateid,----line 312
- int_acctid,int_acctdetid)
- values(:tab518.c_icpid,:tab518.c_operateid,
- :tab387.int_acctid,:tab387.int_acctdetid);
- if(SQLCODE)
- {
- printf("the sqlcode=%ld\n",SQLCODE);
- return -1;
- }
- return 0;
- }
- int insert365()
- {
- /*insert D365*/
- $insert into zw_cbi_invitemacct(si_type,int_invitemid,--line 326
- int_acctid,int_acctdetid,si_feekind)
- values(:tab365.si_type,:tab365.int_invitemid,
- :tab365.si_feekind,:tab387.int_acctid,:tab387.int_acctdetid,
- :tab365.si_feekind);
- if(SQLCODE)
- {
- printf("the sqlcode=%ld\n",SQLCODE);
- return -1;
- }
- return 0;
- }
- void write_err(int errfd,char icpinfo[][65],int num)
- {
- int i;
- for(i=0;i<num;i++)
- {
- write(fd,icpinfo[i],strlen(icpinfo[i]));
- write(fd,"|",1);
- if(errno==EBADF)
- {
- exit(-1);
- printf("errfile stat error!\n");
- }
- }
- }
复制代码 |
|