summaryrefslogtreecommitdiff
path: root/odb/sqlite/blob.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
commite5d0186db99492a139237067bab841a5b83463af (patch)
tree61719595e998314e58383c5081da16d7457a63e7 /odb/sqlite/blob.hxx
parentc53136bd7d266fccaca679d0471dd8ac0ce91373 (diff)
Turn libodb-sqlite repository into package for muti-package repositorylibodb-sqlite
Diffstat (limited to 'odb/sqlite/blob.hxx')
-rw-r--r--odb/sqlite/blob.hxx68
1 files changed, 0 insertions, 68 deletions
diff --git a/odb/sqlite/blob.hxx b/odb/sqlite/blob.hxx
deleted file mode 100644
index a4892a2..0000000
--- a/odb/sqlite/blob.hxx
+++ /dev/null
@@ -1,68 +0,0 @@
-// file : odb/sqlite/blob.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_SQLITE_BLOB_HXX
-#define ODB_SQLITE_BLOB_HXX
-
-#include <odb/pre.hxx>
-
-#include <string>
-#include <cstddef> // std::size_t
-
-// Carefully allow this header to be included into the ODB compilation.
-//
-#ifndef ODB_COMPILER
-# include <odb/sqlite/forward.hxx>
-#endif
-
-namespace odb
-{
- namespace sqlite
- {
-#ifdef ODB_COMPILER
- #pragma db sqlite:type("BLOB STREAM")
- class blob
-#else
- class blob
-#endif
- {
- public:
- // BLOB size to provision for. Set before calling persist() or update().
- //
- explicit
- blob (std::size_t size = 0): size_ (size) {}
-
- std::size_t size () const {return size_;}
- void size (std::size_t s) {size_ = s;}
-
- const std::string& db () const {return db_;}
- const std::string& table () const {return table_;}
- const std::string& column () const {return column_;}
- long long rowid () const {return rowid_;}
-
- void
- clear ()
- {
- size_ = 0;
- db_.clear ();
- table_.clear ();
- column_.clear ();
- rowid_ = 0;
- }
-
- private:
-#ifndef ODB_COMPILER
- friend struct default_value_traits<blob, id_blob_stream>;
-#endif
- std::size_t size_;
- mutable std::string db_;
- mutable std::string table_;
- mutable std::string column_;
- mutable long long rowid_;
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_SQLITE_BLOB_HXX