aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/error.hxx
blob: 43a314d947aaf9c86416b15d369b1a28e207f0ab (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
// file      : odb/oracle/error.hxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : ODB NCUEL; see accompanying LICENSE file

#ifndef ODB_ORACLE_ERROR_HXX
#define ODB_ORACLE_ERROR_HXX

#include <odb/pre.hxx>

#include <oci.h>

#include <odb/oracle/version.hxx>
#include <odb/oracle/details/export.hxx>

namespace odb
{
  namespace oracle
  {
    void
    translate_error (void* h, ub4 t, sword s);

    // @@ Check connection state attribute once connection has been
    // implemented.
    //

    // Translate OCI error given an error handle and throw an appropriate
    // exception.
    //
    inline LIBODB_ORACLE_EXPORT void
    translate_error (OCIError* h, sword s)
    {
      translate_error (h, OCI_HTYPE_ERROR, s);
    }

    // Translate an OCI error given an environment handle error and throw
    // an appropriate exception.
    //
    inline LIBODB_ORACLE_EXPORT void
    translate_error (OCIEnv* h)
    {
      translate_error (h, OCI_HTYPE_ENV, OCI_ERROR);
    }
  }
}

#include <odb/post.hxx>

#endif // ODB_ORACLE_ERROR_HXX