我正在使用Microsoft Visual c ++ 2008 Express Edition。
我关注了SQL API网站[http://www.sqlapi.com/index.html]。
我安装了SqlApi ++,但是我的编译器没有检测到#include <SQLAPI.h>
我做错了什么?
这是我的代码:
#include <stdio.h> // for printf
#include <SQLAPI.h> // main SQLAPI++ header
int main(int argc, char* argv[])
{
SAConnection con; // create connection object
try
{
// connect to database
// in this example it is Oracle,
// but can also be Sybase, Informix, DB2
// SQLServer, InterBase, SQLBase and ODBC
con.Connect(
"test", // database name
"tester", // user name
"tester", // password
SA_Oracle_Client);
printf("We are connected!\n");
// Disconnect is optional
// autodisconnect will ocur in destructor if needed
con.Disconnect();
printf("We are disconnected!\n");
}
catch(SAException &x)
{
// SAConnection::Rollback()
// can also throw an exception
// (if a network error for example),
// we will be ready
try
{
// on error rollback changes
con.Rollback();
}
catch(SAException &)
{
}
// print error message
printf("%s\n", (const char*)x.ErrText());
}
return 0;
}
答案 0 :(得分:0)
请检查是否将包含SQLAPI头文件的include目录添加到项目的其他包含目录列表中(打开项目的属性页,选择选项卡C ++ \ General,chnage属性“其他包含目录”以添加 include SQLAPI ++发行版的子目录。
可能,您必须对SQLAPI库执行相同操作(将 lib 文件夹的路径添加到“Linker / General”选项卡的属性“其他库目录”中)