From 0f9cfacd6cc45f78f1453a8eeb7ffa542dc5dc48 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Jul 2015 18:43:03 +0200 Subject: Implement SQLite incremental BLOB/TEXT I/O --- odb/sqlite/text-stream.hxx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 odb/sqlite/text-stream.hxx (limited to 'odb/sqlite/text-stream.hxx') diff --git a/odb/sqlite/text-stream.hxx b/odb/sqlite/text-stream.hxx new file mode 100644 index 0000000..71d3053 --- /dev/null +++ b/odb/sqlite/text-stream.hxx @@ -0,0 +1,33 @@ +// file : odb/sqlite/text-stream.hxx +// copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_SQLITE_TEXT_STREAM_HXX +#define ODB_SQLITE_TEXT_STREAM_HXX + +#include + +#include +#include +#include + +namespace odb +{ + namespace sqlite + { + class LIBODB_SQLITE_EXPORT text_stream: public stream + { + public: + text_stream (const text& b, bool rw) + : stream (b.db ().c_str (), + b.table ().c_str (), + b.column ().c_str (), + b.rowid (), + rw) {} + }; + } +} + +#include + +#endif // ODB_SQLITE_TEXT_STREAM_HXX -- cgit v1.1