2

このチュートリアルに従って、C++ と ODB の使用方法を学ぼうとしています。

http://www.codesynthesis.com/products/odb/doc/manual.xhtml#2

クラス Person の宣言が永続的である Person.hxx ファイルを作成しました。次に、3 つのファイル Person-odb: .cxx、.hxx、.ixx を取得しました。

次に、 Person-odb.cxx をコンパイルする必要があります

g++ -I/usr/lib/odb/i686-linux-gnu/include Person-odb.cxx

しかし、それは次で終わります:

fatal error: odb/pgsql/version.hxx: No such file or directory. compilation terminated.

ファイル version.hxx はあるのに、odb/pgsql ディレクトリがありません...何が問題なのですか?

これは、永続クラス Person を定義した Person.hxx です。

#ifndef PERSON_HXX
#define PERSON_HXX

#include <string>
#include <odb/core.hxx>

using namespace std;


#pragma db object
class Person {

 private:

  Person() {
  }

  friend class odb::access;


    #pragma db id auto
    unsigned long id_;

  std::string email_;
  std::string first_;
  std::string last_;
  unsigned short age_;

public:

  Person(const std::string& first, const std::string& last,
        unsigned short age);

  /* getters */
  const std::string& first() const;
  const std::string& last() const;
  unsigned short age() const;
  const std::string& email() const;

  /* setters */
  void setAge(unsigned short);
  void setFirst(const std::string&);
  void setLast(const std::string&);
  void setEmail(const std::string&);

};

#endif

次に、odb コンパイラで Person.hxx をコンパイルする必要があります。

odb -d mysql --generate-query --generate-schema Person.hxx

そして、4つのファイル Person.odb.hxx、.cxx、.sql、.ixx を取得します。これは、オブジェクトを永続化するメインプログラムがある driver.cxx です。

#include <memory>
#include <iostream>

#include <odb/database.hxx>
#include <odb/transaction.hxx>

#include <odb/mysql/database.hxx>

#include "Person.hxx"
#include "Person-odb.hxx"

using namespace std;
using namespace odb;

int main(int argc, char* argv[]) {

try {
    auto_ptr<database> db (new odb::mysql::database (argc, argv));

    unsigned long marcoID, loryID, lucaID;

    /*Create some persistent Person objects */

    Person marco ("Marco", "Di Nicola", 26);
    Person luca ("Luca", "La Sala", 22);
    Person lory ("Lorenzo", "Vinci", 24);

    transaction t (db->begin());

    marcoID = db->persist(marco);
    lucaID = db->persist(luca);
    loryID = db->persist(lory);

    t.commit();

} catch (const odb::exception& e) {
    cerr << e.what() << endl;
    return 1;
}
}

これはファイル Person-odb.hxx です

// This file was generated by ODB, object-relational mapping (ORM)
// compiler for C++.
//

#ifndef PERSON_ODB_HXX
#define PERSON_ODB_HXX

#include <odb/version.hxx>

#if (ODB_VERSION != 20200UL)
#error ODB runtime version mismatch
#endif

#include <odb/pre.hxx>

#include "Person.hxx"

#include <memory>
#include <cstddef>

#include <odb/core.hxx>
#include <odb/traits.hxx>
#include <odb/callback.hxx>
#include <odb/wrapper-traits.hxx>
#include <odb/pointer-traits.hxx>
#include <odb/container-traits.hxx>
#include <odb/no-op-cache-traits.hxx>
#include <odb/result.hxx>
#include <odb/simple-object-result.hxx>

#include <odb/details/unused.hxx>
#include <odb/details/shared-ptr.hxx>

namespace odb
{
// Person

template <>
struct class_traits< ::Person >
{
  static const class_kind kind = class_object;
};

template <>
class access::object_traits< ::Person >
{


 ...

 #include "Person-odb.ixx"

 #include <odb/post.hxx>

 #endif // PERSON_ODB_HXX

私が実行すると、すべてがうまくいくようです:

c++ -c Person-odb.cxx
c++ -c driver.cxx

しかし、最後にすべてをリンクする必要がある場合:

c++ -o driver driver.o Person-odb.o -lodb-mysql -lodb

私は得る:

「`Person::Person(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, unsigned short)' への未定義の参照」"

4

1 に答える 1