aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/error.hxx
blob: 7d2138bb9ef5122c821827b26ce10382f7a6b162 (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
// file      : odb/pgsql/errors.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_ERRORS_HXX
#define ODB_PGSQL_ERRORS_HXX

#include <odb/pre.hxx>

#include <libpq-fe.h>

#include <odb/pgsql/version.hxx>

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

namespace odb
{
  namespace pgsql
  {
    class connection;

    LIBODB_PGSQL_EXPORT void
    translate_connection_error (connection&);

    // 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. All remaining parameters except c are ignored.  If r
    // is non-null, the error is translated using the provided result status,
    // s. Error descriptions are obtained using r. If clear_result is true,
    // the resources associated with r are released via PQclear().
    //
    LIBODB_PGSQL_EXPORT void
    translate_result_error (connection& c,
                            PGresult* r = 0,
                            ExecStatusType s = PGRES_EMPTY_QUERY,
                            bool clear_result = true);
  }
}

#include <odb/post.hxx>

#endif // ODB_PGSQL_ERRORS_HXX