Home | History | Annotate | Download | only in sqlite

Lines Matching refs:database

29 /// \file utils/sqlite/database.hpp
30 /// Wrapper classes and utilities for the SQLite database state.
33 /// representing the database, and lightweight.
56 /// Constant for the database::open flags: open in read-only mode.
58 /// Constant for the database::open flags: open in read-write mode.
60 /// Constant for the database::open flags: create on open.
64 /// A RAII model for the SQLite 3 database.
66 /// This class holds the database of the SQLite 3 interface during its existence
68 /// on such database.
71 /// implicit database hold by the class, they use C++ types where appropriate
78 class database {
85 database(void*, const bool);
89 ~database(void);
91 static database in_memory(void);
92 static database open(const fs::path&, int);
93 static database temporary(void);