diff options
Diffstat (limited to 'odb/sqlite/statement.hxx')
-rw-r--r-- | odb/sqlite/statement.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/odb/sqlite/statement.hxx b/odb/sqlite/statement.hxx index eb55e58..ccb4762 100644 --- a/odb/sqlite/statement.hxx +++ b/odb/sqlite/statement.hxx @@ -124,6 +124,10 @@ namespace odb connection_type& conn_; auto_handle<sqlite3_stmt> stmt_; +#if SQLITE_VERSION_NUMBER < 3005003 + std::string text_; +#endif + bool active_; private: @@ -132,7 +136,7 @@ namespace odb // Doubly-linked list of active statements. // - private: + protected: void list_add () { |