gpt4 book ai didi

mysql - 将 MVC++ 与 SQLAPI++ 连接起来

转载 作者:行者123 更新时间:2023-11-30 23:34:35 24 4
gpt4 key购买 nike

我使用的是 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;
}

最佳答案

请检查您是否将带有 SQLAPI 头文件的包含目录添加到项目的附加包含目录列表中(打开项目的属性页,选择选项卡 C++\General,chnage 属性“附加包含目录”以添加 包含 SQLAPI++ 分发的子目录。

可能,您必须对 SQLAPI 库执行相同的操作(将 lib 文件夹的路径添加到“Linker/General”选项卡的属性“Additional library directories”中)

关于mysql - 将 MVC++ 与 SQLAPI++ 连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8655466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com