aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/binding.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/pgsql/binding.hxx')
-rw-r--r--odb/pgsql/binding.hxx18
1 files changed, 14 insertions, 4 deletions
diff --git a/odb/pgsql/binding.hxx b/odb/pgsql/binding.hxx
index 63cf2eb..1adf144 100644
--- a/odb/pgsql/binding.hxx
+++ b/odb/pgsql/binding.hxx
@@ -41,17 +41,27 @@ namespace odb
public:
typedef pgsql::bind bind_type;
- binding (): bind (0), count (0), version (0) {}
+ binding ()
+ : bind (0), count (0), version (0),
+ batch (0), skip (0), status (0) {}
binding (bind_type* b, std::size_t n)
- : bind (b), count (n), version (0)
- {
- }
+ : bind (b), count (n), version (0),
+ batch (0), skip (0), status (0) {}
+
+ binding (bind_type* b, std::size_t n,
+ std::size_t bt, std::size_t s, unsigned long long* st)
+ : bind (b), count (n), version (0),
+ batch (bt), skip (s), status (st) {}
bind_type* bind;
std::size_t count;
std::size_t version;
+ std::size_t batch;
+ std::size_t skip;
+ unsigned long long* status; // Batch status array.
+
private:
binding (const binding&);
binding& operator= (const binding&);