summaryrefslogtreecommitdiff
path: root/odb/sqlite/prepared-query.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/prepared-query.cxx')
-rw-r--r--odb/sqlite/prepared-query.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/odb/sqlite/prepared-query.cxx b/odb/sqlite/prepared-query.cxx
deleted file mode 100644
index 79df0f2..0000000
--- a/odb/sqlite/prepared-query.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : odb/sqlite/prepared-query.cxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#include <odb/sqlite/prepared-query.hxx>
-
-#include <odb/sqlite/connection.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- prepared_query_impl::
- ~prepared_query_impl ()
- {
- }
-
- bool prepared_query_impl::
- verify_connection (odb::transaction& t)
- {
- // The transaction can be started using the main database of any of the
- // attached databases. So we verify the main connections match.
- //
- return &static_cast<connection&> (t.connection ()).main_connection () ==
- &static_cast<connection&> (stmt->connection ()).main_connection ();
- }
- }
-}