Lines Matching refs:sqlite
56 namespace sqlite = utils::sqlite;
78 sqlite::database db = store::detail::open_and_setup( in get_schema_version()
79 file, sqlite::open_readonly); in get_schema_version()
111 sqlite::database db = store::detail::open_and_setup( in migrate_schema_step()
112 file, sqlite::open_readwrite); in migrate_schema_step()
133 } catch (const sqlite::error& e) { in migrate_schema_step()
152 sqlite::database old_db = store::detail::open_and_setup( in chunk_database()
153 old_file, sqlite::open_readonly); in chunk_database()
155 sqlite::statement actions_stmt = old_db.create_statement( in chunk_database()
158 sqlite::statement start_time_stmt = old_db.create_statement( in chunk_database()
195 sqlite::database db = store::detail::open_and_setup( in chunk_database()
196 new_file, sqlite::open_readwrite | sqlite::open_create); in chunk_database()