summaryrefslogtreecommitdiff
path: root/odb/oracle/view-statements.txx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/view-statements.txx')
-rw-r--r--odb/oracle/view-statements.txx30
1 files changed, 0 insertions, 30 deletions
diff --git a/odb/oracle/view-statements.txx b/odb/oracle/view-statements.txx
deleted file mode 100644
index 3a5d31e..0000000
--- a/odb/oracle/view-statements.txx
+++ /dev/null
@@ -1,30 +0,0 @@
-// file : odb/oracle/view-statements.txx
-// license : ODB NCUEL; see accompanying LICENSE file
-
-#include <cstring> // std::memset
-
-namespace odb
-{
- namespace oracle
- {
- template <typename T>
- view_statements<T>::
- ~view_statements ()
- {
- }
-
- template <typename T>
- view_statements<T>::
- view_statements (connection_type& conn)
- : statements_base (conn),
- image_binding_ (image_bind_, view_traits::column_count)
- {
- image_.version = 0;
- image_version_ = 0;
-
- image_binding_.change_callback = image_.change_callback ();
-
- std::memset (image_bind_, 0, sizeof (image_bind_));
- }
- }
-}