Lines Matching full:store
29 #include "store/write_backend.hpp"
33 #include "store/exceptions.hpp"
34 #include "store/metadata.hpp"
35 #include "store/read_backend.hpp"
36 #include "store/write_transaction.hpp"
63 int store::detail::current_schema_version = 3;
90 store::detail::schema_file(void) in schema_file()
103 /// \throw store::error If there is a problem initializing the database.
104 store::metadata
105 store::detail::initialize(sqlite::database& db) in initialize()
122 } catch (const store::integrity_error& e) { in initialize()
134 struct store::write_backend::impl : utils::noncopyable {
150 store::write_backend::write_backend(impl* pimpl_) : in write_backend()
157 store::write_backend::~write_backend(void) in ~write_backend()
168 /// \throw store::error If there is any problem opening or creating
170 store::write_backend
171 store::write_backend::open_rw(const fs::path& file) in open_rw()
185 store::write_backend::close(void) in close()
195 store::write_backend::database(void) in database()
204 store::write_transaction
205 store::write_backend::start_write(void) in start_write()