aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/error.hxx
blob: 3e79868f55b27088df1bbb77387c815b5749aa71 (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
// file      : odb/pgsql/error.hxx
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_PGSQL_ERROR_HXX
#define ODB_PGSQL_ERROR_HXX

#include <odb/pre.hxx>

#include <libpq-fe.h>

#include <odb/pgsql/version.hxx>
#include <odb/pgsql/forward.hxx> // connection
#include <odb/pgsql/details/export.hxx>

namespace odb
{
  namespace pgsql
  {
    // Translate an error condition involving a PGresult*. If r is null, it is
    // assumed that the error was caused due to a bad connection or a memory
    // allocation error.
    //
    LIBODB_PGSQL_EXPORT void
    translate_error (connection& c, PGresult* r);

    // Return true if the PGresult is in an error state. If both s and r are
    // non-null, the pointed to value will be populated with the result status.
    // Otherwise, s is ignored.
    //
    LIBODB_PGSQL_EXPORT bool
    is_good_result (PGresult* r, ExecStatusType* s = 0);
  }
}

#include <odb/pgsql/error.ixx>

#include <odb/post.hxx>

#endif // ODB_PGSQL_ERROR_HXX