我正在使用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,更改属性“其他包含目录”以添加SQLAPI ++分发的include子目录。

可能,您必须对SQLAPI库执行相同的操作(将lib文件夹的路径添加到“链接器/常规”选项卡的属性“其他库目录”中)

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

10-16 23:42