aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/result-ptr.hxx
blob: 2c5ee89f7a9609a0b0d80aef8248e16a74eb4bff (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
// file      : odb/pgsql/result-ptr.hxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_PGSQL_RESULT_PTR_HXX
#define ODB_PGSQL_RESULT_PTR_HXX

#include <odb/pre.hxx>

#include <libpq-fe.h>

#include <odb/pgsql/version.hxx>

#include <odb/pgsql/details/export.hxx>

//
// Note: do not include this header into public headers (i.e., those
// that may be included, directly or indirectly, by user code) because
// it includes libpq-fe.h
//

namespace odb
{
  namespace pgsql
  {
    class LIBODB_PGSQL_EXPORT result_ptr
    {
    public:
      result_ptr (PGresult* r = 0)
          : r_ (r)
      {
      }

      ~result_ptr ()
      {
        if (r_ != 0)
          PQclear (r_);
      }

      PGresult*
      get () const
      {
        return r_;
      }

      void
      reset (PGresult* r = 0)
      {
        if (r_ != 0)
          PQclear (r_);

        r_ = r;
      }

      PGresult*
      release ()
      {
        PGresult* r (r_);
        r_ = 0;
        return r;
      }

    private:
      result_ptr (const result_ptr&);
      result_ptr& operator= (const result_ptr&);

    private:
      PGresult* r_;
    };
  }
}

#include <odb/post.hxx>

#endif // ODB_PGSQL_RESULT_PTR_HXX