aboutsummaryrefslogtreecommitdiff
path: root/pgsql/types/driver.cxx
blob: 17f48f467e3b938e2c4a0f60a63c6c00dcd5b977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// file      : pgsql/types/driver.cxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

// Test PostgreSQL type conversion.
//

#include <memory>   // std::auto_ptr
#include <cassert>
#include <iostream>

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

#include <common/common.hxx>

#include "test.hxx"
#include "test-odb.hxx"

using namespace std;
using namespace odb::core;

int
main (int argc, char* argv[])
{
  try
  {
    auto_ptr<database> db (create_database (argc, argv));

    object o (1);

    o.bool_ = true;
    o.short_ = 12345;
    o.int_ = -123456;
    o.long_long_ = 123456;

    o.float_ = 1.123F;
    o.float8_ = 1.123;
    o.double_ = 1.123;
    // o.numeric_ = "123.456";

    o.date_ = 4015;
    o.time_ = 48180000000;
    o.timestamp_ = 346896000;

    string short_str (128, 's');
    string medium_str (250, 'm');
    string long_str (2040, 'l');

    o.char_ = short_str;
    o.varchar_ = medium_str;
    o.text_ = long_str;

    buffer long_buf (long_str.c_str (), long_str.size ());
    o.bytea_ = long_buf;

    unsigned char varbit_buf[8] = {1, 3, 1, 3, 1, 3, 1, 3};
    o.varbit_.size = 52;
    o.varbit_.ubuffer_ = ubuffer (varbit_buf, 8);

    o.bit_.a = 0;
    o.bit_.b = 1;
    o.bit_.c = 0;
    o.bit_.d = 1;

    o.enum_ = green;

    // Persist.
    //
    {
      transaction t (db->begin ());
      db->persist (o);
      t.commit ();
    }

    // Load.
    //
    {
      transaction t (db->begin ());
      auto_ptr<object> o1 (db->load<object> (1));
      t.commit ();

      assert (o == *o1);
    }
  }
  catch (const odb::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }
}