From e5d0186db99492a139237067bab841a5b83463af Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 24 Jan 2024 19:01:19 +0300 Subject: Turn libodb-sqlite repository into package for muti-package repository --- libodb-sqlite/odb/sqlite/prepared-query.cxx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libodb-sqlite/odb/sqlite/prepared-query.cxx (limited to 'libodb-sqlite/odb/sqlite/prepared-query.cxx') diff --git a/libodb-sqlite/odb/sqlite/prepared-query.cxx b/libodb-sqlite/odb/sqlite/prepared-query.cxx new file mode 100644 index 0000000..79df0f2 --- /dev/null +++ b/libodb-sqlite/odb/sqlite/prepared-query.cxx @@ -0,0 +1,27 @@ +// file : odb/sqlite/prepared-query.cxx +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +#include + +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 (t.connection ()).main_connection () == + &static_cast (stmt->connection ()).main_connection (); + } + } +} -- cgit v1.1