aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-15 13:17:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:38:24 +0200
commit1e78bdc724e95898c04a3409b0b192aa7f77780b (patch)
treed26ae47ae9956612b5973f536219f0c9b455db03 /odb/statement.hxx
parent5b0430fdf4617b396e462872d438a663b174a3a8 (diff)
Implement early connection release
Diffstat (limited to 'odb/statement.hxx')
-rw-r--r--odb/statement.hxx16
1 files changed, 1 insertions, 15 deletions
diff --git a/odb/statement.hxx b/odb/statement.hxx
index 3cd5598..284c8ae 100644
--- a/odb/statement.hxx
+++ b/odb/statement.hxx
@@ -32,22 +32,8 @@ namespace odb
virtual
~statement () = 0;
- // Statement caching status.
- //
- public:
- bool
- cached () const
- {
- return cached_;
- }
-
- virtual void
- cached (bool);
-
protected:
- statement (): cached_ (false) {}
-
- bool cached_;
+ statement () {}
};
}