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
|
// file : odb/pgsql/pgsql-types.hxx
// copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_PGSQL_PGSQL_TYPES_HXX
#define ODB_PGSQL_PGSQL_TYPES_HXX
#include <odb/pre.hxx>
#include <cstddef> // std::size_t
#include <odb/pgsql/pgsql-fwd.hxx> // Oid
namespace odb
{
namespace pgsql
{
// The libpq result binding. This data structures is
// modelled after MYSQL_BIND from MySQL.
//
struct bind
{
enum buffer_type
{
boolean_, // Buffer is a bool; size, capacity, truncated are unused.
smallint, // Buffer is short; size, capacity, truncated are unused.
integer, // Buffer is int; size, capacity, truncated are unused.
bigint, // Buffer is long long; size, capacity, truncated are unused.
real, // Buffer is float; size, capacity, truncated are unused.
double_, // Buffer is double; size, capacity, truncated are unused.
numeric, // Buffer is a char array.
date, // Buffer is int; size, capacity, truncated are unused.
time, // Buffer is long long; size, capacity, truncated are unused.
timestamp,// Buffer is long long; size, capacity, truncated are unused.
text, // Buffer is a char array.
bytea, // Buffer is a char array.
bit, // Buffer is a char array.
varbit, // Buffer is a char array.
uuid // Buffer is a 16-byte char array; size capacity, truncated
// are unused.
};
buffer_type type;
void* buffer;
std::size_t* size;
std::size_t capacity;
bool* is_null;
bool* truncated;
};
}
}
#include <odb/post.hxx>
#endif // ODB_PGSQL_PGSQL_TYPES_HXX
|