如何将ESQL / C文件简单地转换为C文件? (Embedded-SQL / C文件到C文件)?

时间:2017-05-22 21:34:14

标签: c informix embedded-sql

我正在进行迁移项目。我需要将扩展​​名为.ec的ESQL / C文件转换为gcc上的c文件。我知道ESQL / C程序会创建一个.c文件。但是我怎么能这样呢?

仅供参考:我正在使用IBM Informix服务器。

1 个答案:

答案 0 :(得分:3)

TL; DR - 对于使用.ec程序(脚本)编译的Informix esql文件,您可以使用-e选项'仅预处理,没有编译或链接'。

esql -e esqlcode.ec

这会从esqlcode.c生成esqlcode.ec。 (忽略我之前关于“足够近期”的评论;你不会使用不够新近的版本 - 我的记忆再次失败。)

esql脚本传统上留下了中间.c文件。我的ESQL / C make规则都将生成的.c文件作为单独的编译后步骤删除:

.ec.o:
    ${ESQL} ${ESQLFLAGS} -c $*.ec
    ${RM_F} $*.c

对后缀,宏等的适当定义

esql命令

使用Informix esql编译器(脚本),您可以运行它而不需要任何选项来获取这样的帮助消息(尽量不要害怕:实际上有两个命令的用法):

Usage: esql [-e] [-thread] [-glu] [esqlcargs] [-cc] [otherargs] [-o outfile]
            [-cp] [-onlycp] [-np] [-nup]
            [-libs] esqlfile.ec [othersrc.c...] [otherobj.o...] [-lyourlib...]

        -e         Preprocess only, no compilation or linking
        -thread    Multithread support
        -glu       Enable GLU (GLS for Unicode)
        -esqlcargs: esqlc arguments (-g, -G, -nln, -Ipathname, -nowarn, -V, -ansi,
                                    -xopen, -local, -log, -EDname, -EUname,
                                    -icheck
        -cc        Arguments after cc go to c compiler only
        otherargs: Other arguments are passed to cc
        -o         Next argument is program name
        -libs      Display the list of libraries used by esql at link time.
        -cp        Run C preprocessor before esqlc
        -onlycp    Run only the C preprocessor, no esqlc, compilation or linking
        -np        No protection of SQL keywords in SQL statements
        -nup       No unprotection of SQL keywords, forces -onlycp


Usage: esqlc [-thread] [-gG] [-nln] [-Ipathname] [-nowarn] [-V] [-ansi]
             [-static] [-xopen] [-local] [-log file] [-EDname[=val]] [-EUname]
             [-icheck] [-keepccomment] [-version] esqlfile.ec
         -thread     Multithread support
         -g          Number every line (debugging purposes)
         -G          No line number (debugging purposes; same as -nln)
         -nln        No line number (debugging purposes; same as -G)
         -Ipathname  Add pathname to include file search path
         -nowarn     Do not print warnings
         -static     Link with static libraries
         -keepccomment Allow C style comments in SQL statements.
         -version    Displays build and version information.
         -V          Print preprocessor version information
         -ansi       Perform ANSI checking
         -xopen      Perform XOPEN checking
         -local      Make cursor/statement ids local to the file
         -log file   Log error and warning messages in file
         -EDname     Define specified preprocessor name flag
          [=val]     and set it equal to 'val'
         -EUname     Undefine specified preprocessor name flag
         -icheck     Check for indicator variables

esqlc的用法是针对“真正的”预处理器$INFORMIXDIR/lib/esqlcesql的用法适用于esql脚本本身 - 这是您主要使用的内容。 esqlcargs用法中的esqlesqlc列出的内容 - 它们由脚本传递给程序。

此输出来自与Informix 12.10关联的ESQL / C 4.10。我不会厌倦ESQL / C版本号的历史记录。