0

我正在编写我的第一个 odb 代码并且无法使这个基本工作,尽管只有 db 连接代码有效:

/*! @file overview_record.h
*/
#ifndef OVERVIEW_RECORD_H
#define OVERVIEW_RECORD_H
#include <string>
#include <odb/core.hxx>
#include <odb/nullable.hxx>

#pragma db object table("mddb_overview") no_id 

    class overview_record
    {
    public:

#pragma db column("product_name") type("nvarchar(64)")
        std::wstring product_name;

#pragma db column("order_number") type("int")
        long order_number;
    };

#endif

驱动代码:

    // odb_playground.cpp : Defines the entry point for the console application.
//

#include <iostream>
#include <memory>
#include <thread>

#include <odb/core.hxx>
#include <odb/database.hxx>
#include <odb/mssql/database.hxx>
#include <odb/mssql/connection-factory.hxx>
#include <odb/mssql/exceptions.hxx>

#include "overview_record-odb.hxx"

int main(int argc, char* argv[])
{
    try{
        std::auto_ptr<odb::mssql::connection_pool_factory> connection_factory(
            new odb::mssql::connection_pool_factory(0, std::thread::hardware_concurrency()));
        std::unique_ptr<odb::database> db(
            new odb::mssql::database("dsn=mddb_local_32", odb::mssql::isolation_read_committed, static_cast<SQLHENV>(0), connection_factory)
            );


        odb::transaction t(db->begin());
        db->query<overview_record>();
        //odb::result<overview_record> result();
        //auto it = result.begin();
        //while(true)
        //{
        //  static int i = 0;
        //  if (i++ > 10)
        //      break;
        //  std::cout << "Order_number " << it->order_number << " product_name " << it->product_name << std::endl;
        //  ++i;

        //}
        t.commit();
    }
    catch (const odb::database_exception &e) {
        std::cout << "ODB database error: " << e.what() << std::endl;
    }
    return 0;
}

当然我用odb编译了overview_record.h odb.exe --database mssql overview_record.h(否则不会有.hxx)。但是我得到以下编译器错误db->query<overview_record>();,尽管实例化默认构造的结果有效:

错误 3 错误 C2504: 'odb::result_base' : 基类未定义 c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 76 1 odb_playground

错误 4 错误 C2027:使用未定义类型 'odb::result_base' c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 82 1 odb_playground

错误 5 错误 C2146:语法错误:缺少 ';' 在标识符“value_type”之前 c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 82 1 odb_playground

错误 6 错误 C4430:缺少类型说明符 - 假定为 int。注意:C++ 不支持 default-int c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 82 1 odb_playground

错误 7 错误 C2602:'odb::result::value_type' 不是 'odb::result' c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 的基类的成员 82 1 odb_playground

错误 8 错误 C2868: 'odb::result::value_type' : using-declaration 的非法语法;预期的限定名称 c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 82 1 odb_playground

错误 9 错误 C2027:使用未定义类型 'odb::result_base' c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 93 1 odb_playground

错误 10 错误 C2146:语法错误:缺少 ';' 在标识符“result_impl_type”之前 c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 93 1 odb_playground

错误 11 错误 C4430:缺少类型说明符 - 假定为 int。注意:C++ 不支持 default-int c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 93 1 odb_playground

错误 12 错误 C2602:'odb::result::result_impl_type' 不是 'odb::result' c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 的基类的成员 93 1 odb_playground

错误 13 错误 C2868: 'odb::result::result_impl_type' : using-declaration 的非法语法;预期的限定名称 c:\users\klm\downloads\libodb-2.4.0\odb\result.hxx 93 1 odb_playground

4

1 回答 1

1

问题是 odb 编译器缺少标志,在本例中为-qeg--generate-query标志。否则 odb 不会将所需的代码添加到生成的文件中。

所以正确的调用是odb.exe -q --database mssql overview_record.h

于 2015-08-24T14:21:29.900 回答