- 论坛徽章:
- 5
|
main.ec
#include <stdio.h>
#include <stdlib.h>
main()
{
/*
$char DbNameLc[19];
printf( "Enter name of database: " );
gets( DbNameLc );
$database $DbNameLc;
if( SQLCODE == 0 )
printf( "Database %s is now open.\n", DbNameLc );
else
printf( "Error in opening database: %d\n", SQLCODE );
exit( 0 );
*/
}
d:\c_informix\esql -e main.ec
生成:main.c
然后编译main.c提示:
sqlhdr.h: No such file or directory.
sqliapi.h: No such file or directory.
我测试中发现通过esql.exe编译后的main.ec变为:
#include <sqlhdr.h>
#include <sqliapi.h>
#line 1 "main.ec"
#include <stdio.h>
#include <stdlib.h>
main()
{
/*
$char DbNameLc[19];
printf( "Enter name of database: " );
gets( DbNameLc );
$database $DbNameLc;
if( SQLCODE == 0 )
printf( "Database %s is now open.\n", DbNameLc );
else
printf( "Error in opening database: %d\n", SQLCODE );
exit( 0 );
*/
}
#line 18 "main.ec"
头文件自动添加了:
#include <sqlhdr.h>
#include <sqliapi.h>
于是我将这两个文件所在的目录引入配置到编译器的目录中,可是编译main.c还是提示:
sqlhdr.h: No such file or directory.
sqliapi.h: No such file or directory. |
|