当前位置:  技术问答>linux和unix

在sco下用C编写数据库的一个问题。

    来源: 互联网  发布时间:2014-11-01

    本文导语:  我在.pc文件中有一句   EXEC SQL CONNECT:username IDENTIFIED BY:password   AT db_link_name USING :db_name; 编译成.c文件没有错误提示,但用cc编译成.o文件是出错。说sqlcxt没有定义。??? cc sqltest.c 以下为编译后的错误提示: "...

我在.pc文件中有一句
  EXEC SQL CONNECT:username IDENTIFIED BY:password
  AT db_link_name USING :db_name;
编译成.c文件没有错误提示,但用cc编译成.o文件是出错。说sqlcxt没有定义。???
cc sqltest.c
以下为编译后的错误提示:
"sqltest.c", line 216: warning: argument is incompatible with prototype: arg #1
undefined                       first referenced
 symbol                             in file
sqlcxt                              sqltest.o
去掉
EXEC SQL CONNECT:username IDENTIFIED BY:password
  AT db_link_name USING :db_name;
则正常。

|
需要一个一段公用的代码包含的定义,把这些代码加进去
文件的内容
/* Copyright (c) 1985,1986 by Oracle Corporation. */
 
/*
NAME
  SQLCA : SQL Communications Area.
FUNCTION
  Contains no code. Oracle fills in the SQLCA with status info
  during the execution of a SQL stmt.
NOTES
  If the symbol SQLCA_STORAGE_CLASS is defined, then the SQLCA
  will be defined to have this storage class. For example:
 
    #define SQLCA_STORAGE_CLASS extern
 
  will define the SQLCA as an extern.
 
  If the symbol SQLCA_INIT is defined, then the SQLCA will be
  statically initialized. Although this is not necessary in order
  to use the SQLCA, it is a good pgming practice not to have
  unitialized variables. However, some C compilers/OS's don't
  allow automatic variables to be init'd in this manner. Therefore,
  if you are INCLUDE'ing the SQLCA in a place where it would be
  an automatic AND your C compiler/OS doesn't allow this style
  of initialization, then SQLCA_INIT should be left undefined --
  all others can define SQLCA_INIT if they wish.

  If the symbol SQLCA_NONE is defined, then the SQLCA variable will
  not be defined at all.  The symbol SQLCA_NONE should not be defined
  in source modules that have embedded SQL.  However, source modules
  that have no embedded SQL, but need to manipulate a sqlca struct
  passed in as a parameter, can set the SQLCA_NONE symbol to avoid
  creation of an extraneous sqlca variable.
*/
 
#ifndef SQLCA
#define SQLCA 1
 
struct   sqlca
         {
         /* ub1 */ char    sqlcaid[8];
         /* b4  */ long    sqlabc;
         /* b4  */ long    sqlcode;
         struct
           {
           /* ub2 */ unsigned short sqlerrml;
           /* ub1 */ char           sqlerrmc[70];
           } sqlerrm;
         /* ub1 */ char    sqlerrp[8];
         /* b4  */ long    sqlerrd[6];
         /* ub1 */ char    sqlwarn[8];
         /* ub1 */ char    sqlext[8];
         };

#ifndef SQLCA_NONE 
#ifdef   SQLCA_STORAGE_CLASS
SQLCA_STORAGE_CLASS struct sqlca sqlca
#else
         struct sqlca sqlca
#endif
 
#ifdef  SQLCA_INIT
         = {
         {'S', 'Q', 'L', 'C', 'A', ' ', ' ', ' '},
         sizeof(struct sqlca),
         0,
         { 0, {0}},
         {'N', 'O', 'T', ' ', 'S', 'E', 'T', ' '},
         {0, 0, 0, 0, 0, 0},
         {0, 0, 0, 0, 0, 0, 0, 0},
         {0, 0, 0, 0, 0, 0, 0, 0}
         }
#endif
         ;
#endif
 
#endif
 
/* end SQLCA */

|
不客气,我现在也在学习unix下的c语言编程,大家互相学习

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • sco unix数据恢复
  • SCO OpenServer 5.05和SCO UNIXWARE7.11有什么区别?
  • sco unix中类似reg.sco的文件怎么执行?
  • 安装SCO UNIX到PC机上是否一定要用SCO UNIX光盘?
  • SCO UnixWare 跟 SCO Unix 有什么不同????????????是同一个系统吗。。。
  • 请问谁在SCO上用过PERL的DBI/DBD这些东西?MD5算法,LDAP,MYSQL都支持SCO吗?
  • 高分,在sco unix5.05下面用modem进行拔号,或sco unix的学习教程
  • Sco Unix 和red hat linux的最新版本是什么,各有几张盘,SCO UNIX和微软的Xenix哪个更好?
  • 在sun公司网站上,好象没有jdk for sco unix 的版本,可否下载for solaris的辕马在sco unix 下编译
  • sos!我的手提上的网卡是sis900,装了sco 5.0.5发现没有驱动,哪里可以下到sis 900的网卡在sco下的驱动??
  • 路由器配置:有一局域网(SCO UNIX 5.0.5)与一台主机(SCO UNIX 5.0.5)通过祯中继联接。路由器(CISCO2610作主节点)在局域的IP为IPa,广
  • About SCO Openserver and Oracle
  • 学SCO还是学SOLARIS
  • 菜鸟向sco unix+oracle高手请教
  • 请问TOMCAT的LINUX包是否都可以在SCO UNIX中运行和安装
  • 请问sco-Unix的最新版本是多少
  • SCO Unix下的C程序编译问题?
  • 如何安装SCO OpenServer 5的网络开发包
  • sco opensever5是什么东东?有人在用吗?
  • sco unix5.0.6与win2000的双操作系统???
  • 在sco unix中mount一个fat32的分区的问题……


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3