From 4c38968b151af31ebd9ffa381f7a00df7183a8d6 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Wed, 7 Sep 2011 15:09:23 +0200 Subject: Add bind structures --- odb/oracle/binding.hxx | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 odb/oracle/binding.hxx (limited to 'odb/oracle/binding.hxx') diff --git a/odb/oracle/binding.hxx b/odb/oracle/binding.hxx new file mode 100644 index 0000000..778e7fc --- /dev/null +++ b/odb/oracle/binding.hxx @@ -0,0 +1,45 @@ +// file : odb/oracle/binding.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +#ifndef ODB_ORACLE_BINDING_HXX +#define ODB_ORACLE_BINDING_HXX + +#include + +#include // std::size_t + +#include +#include + +#include + +namespace odb +{ + namespace oracle + { + class LIBODB_ORACLE_EXPORT binding + { + public: + typedef oracle::bind bind_type; + + binding (bind_type* b, std::size_t n) + : bind (b), count (n), version (0) + { + } + + bind_type* bind; + std::size_t count; + std::size_t version; + + private: + binding (const binding&); + binding& operator= (const binding&); + }; + } +} + +#include + +#endif // ODB_ORACLE_BINDING_HXX -- cgit v1.1