免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 941 | 回复: 0
打印 上一主题 下一主题

死活都不明白,怎么会提示这么错误。。。。。。。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-03-14 12:09 |只看该作者 |倒序浏览

  1. 写了一个ec的程序,编译的时候怎么老是提示如下啊:
  2. esqlc: "batch.ec", line 191: Error -33037: 'c_operateid' is not a component of record 'tab518'.
  3. esqlc: "batch.ec", line 297: Error -33037: 'int_acctid' is not a component of record 'tab387'.
  4. esqlc: "batch.ec", line 312: Error -33037: 'c_icpid' is not a component of record 'tab518'.
  5. esqlc: "batch.ec", line 326: Error -33037: 'si_type' is not a component of record 'tab365'.
  6. 程序如下:

  7. #include <sys/types.h>;
  8. #include <sys/stat.h>;
  9. #include <unistd.h>;
  10. #include <fcntl.h>;
  11. #include <stdio.h>;
  12. #include <errno.h>;
  13. #include <string.h>;
  14. #include <stdlib.h>;
  15. #include sqlca;
  16. #include datetime;
  17. #define ARGUC 8
  18.         
  19. size_t readfile_aline(int fd,char buf[],const size_t charlen);
  20. int getIcpInfo(char icp[][65],const int count,char *buf);
  21. int insert387();
  22. int insert536();
  23. int insert365();
  24. void write_err(int errfd,char icpinfo[][65],int num);
  25. typedef struct gl_re_icpoperate
  26.    {
  27.            char c_operateid[6];
  28.            char c_icpid[9];
  29.            int si_type;
  30.            datetime year to second dt_begin;
  31.            datetime year to second dt_stop;
  32.            char vc_name[65];
  33.            char vc_connectno[21];
  34.            char vc_port[21];
  35.            char vc_provider[65];
  36.    } D518;
  37.    typedef struct yx_pf_acctdet
  38.    {
  39.            long int_acctid;
  40.            long int_acctdetid;
  41.            int si_acctstate;
  42.            /*datetime year to second dt_starttime;
  43.            datetime year to second dt_stoptime;
  44.            char vc_acctname[33];*/
  45.    }D387;
  46.    /*typedef struct gl_re_icpacctdet
  47.    {
  48.            char c_icpid[9];
  49.            char c_operateid[6];
  50.            long int_acctid;
  51.            long int_acctdetid;
  52.    }D536;*/
  53.    typedef struct zw_cbi_invitemacct
  54.    {
  55.            int si_type;
  56.            /*si_type=2,bill*/
  57.            long int_invitemid;
  58.            /*long int int_acctid;
  59.            long int int_acctdetid;*/
  60.            int si_feekind;
  61.    }D365;
  62.    /*declare the global variable*/
  63.    $struct D518 tab518;
  64.    $struct D387 tab387;
  65.    $struct D365 tab365;

  66. int main(int argc,char *argv[])
  67. {               
  68.    int fd,errfd,rec_count,i;
  69.    char icpinfo[ARGUC][65];
  70.    char buf[512],bufbak[512];

  71.    if (argc!=2)
  72.    {                       
  73.       printf("parameter error!\n");
  74.       return -1;              
  75.    }                                       
  76.    if((fd=open(argv[1],O_RDONLY))==-1)
  77.    {
  78.       printf("Open file Error\n Error No=%d\n",errno);
  79.       return -1;
  80.    }
  81.    if((errfd=open("error.txt",O_WRONLY|O_TRUNC))==-1)
  82.    {
  83.       printf("Open errfile Error\n Error No=%d\n",errno);
  84.       return -1;
  85.    }
  86.     while((long)readfile_aline(fd,buf,sizeof(buf))>;0L)
  87.     {
  88.        printf("the buf is:%s\n",buf);
  89.            strcpy(bufbak,buf);
  90.        if(getIcpInfo(icpinfo,ARGUC,buf)!=-1)
  91.        /*split the icpinfo string read from the datafile*/
  92.        {
  93.           insert_db(errfd,icpinfo);
  94.        }
  95.            else
  96.                    write(errfd,bufbak,strlen(bufbak));
  97.    }
  98.    close(fd);
  99.    close(errfd);
  100. }

  101. int insert_db(int errfd,char icpinfo[][65])
  102. {
  103.    
  104.    /*init the parameter*/
  105.    strcpy(tab518.c_operateid,icpinfo[1]);
  106.    strcpy(tab518.c_icpid,icpinfo[2]);
  107.    tab518.si_type=0;
  108.    dtcvasc("2099-12-31 23:59:59",&tab518.dt_stop);
  109.    dtcurrent(&tab518.dt_begin);
  110.    strcpy(tab518.vc_name,icpinfo[3]);
  111.    tab387.si_acctstate=1;
  112.    tab365.si_type=2;
  113.    
  114.    $database kkkkk;
  115.    $begin work;
  116.    /*insert D518*/
  117.    $insert into gl_re_icpoperate(c_operateid,c_icpid,si_type,---line191
  118.    dt_begin,dt_stop,vc_name,vc_connectno,vc_port,vc_provider)
  119.    values(:tab518.c_operateid,:tab518.c_icpid,:tab518.si_type,
  120.    :tab518.dt_begin,:tab518.dt_stop,:tab518.vc_name,
  121.    :tab518.vc_connectno,:tab518.c_port,:tab518.vc_provider);
  122.    if(SQLCODE)
  123.     {
  124.       printf("the sqlcode=%ld\n",SQLCODE);
  125.       $rollback work;
  126.           write_err(fd,icpinfo,8);
  127.       return -1;
  128.     }

  129.    if(strcmp(icpinfo[0],"gaa")!=0)
  130.    {
  131.    }
  132.    else if(strcmp(icpinfo[0],"gic")!=0)
  133.    {
  134.    }
  135.    else
  136.        write_err(fd,icpinfo,7);
  137.    $commit work;


  138. }

  139. int insert387()
  140. {
  141.         /*insert D387*/
  142.         $insert into yx_pf_acctdet(int_acctid,int_acctdetid,---line 297
  143.        si_acctstate,dt_starttime,dt_stoptime,vc_acctname)
  144.        values(:tab387.int_acctid,:tab387.int_acctdetid,
  145.        :tab387.si_acctstate,:tab518.dt_begin,:tab518.dt_stop,:tab518.vc_name);
  146.        if(SQLCODE)
  147.        {
  148.           printf("the sqlcode=%ld\n",SQLCODE);
  149.           return -1;
  150.        }
  151.            else
  152.                    return 0;
  153. }
  154. int insert536()
  155. {
  156.         /*insert D536*/
  157.            $insert into gl_re_icpacctdet(c_icpid,c_operateid,----line 312
  158.                    int_acctid,int_acctdetid)
  159.                    values(:tab518.c_icpid,:tab518.c_operateid,
  160.                    :tab387.int_acctid,:tab387.int_acctdetid);
  161.        if(SQLCODE)
  162.        {
  163.           printf("the sqlcode=%ld\n",SQLCODE);
  164.           return -1;
  165.        }
  166.            return 0;
  167. }
  168. int insert365()
  169. {
  170.         /*insert D365*/
  171.        $insert into zw_cbi_invitemacct(si_type,int_invitemid,--line 326
  172.                    int_acctid,int_acctdetid,si_feekind)
  173.                    values(:tab365.si_type,:tab365.int_invitemid,
  174.                    :tab365.si_feekind,:tab387.int_acctid,:tab387.int_acctdetid,
  175.                    :tab365.si_feekind);
  176.            if(SQLCODE)
  177.        {
  178.           printf("the sqlcode=%ld\n",SQLCODE);
  179.           return -1;
  180.        }
  181.            return 0;
  182. }

  183. void write_err(int errfd,char icpinfo[][65],int num)
  184. {
  185.         int i;
  186.         for(i=0;i<num;i++)
  187.         {
  188.                 write(fd,icpinfo[i],strlen(icpinfo[i]));
  189.                 write(fd,"|",1);
  190.                 if(errno==EBADF)
  191.                 {
  192.                         exit(-1);
  193.                         printf("errfile stat error!\n");
  194.                 }
  195.         }
  196. }

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP